Package org.tmatesoft.svn.core.internal.wc

Examples of org.tmatesoft.svn.core.internal.wc.SVNConfigFile


        if (myDBFormat >= MIN_PACKED_FORMAT) {
            getMinUnpackedRev();
        }
       
        boolean isRepSharingAllowed = false;
        SVNConfigFile config = loadConfig();
        if (config != null) {
            isRepSharingAllowed = Boolean.getBoolean(config.getPropertyValue(REP_SHARING_SECTION, ENABLE_REP_SHARING_OPTION));
        }
       
        if (myDBFormat >= MIN_REP_SHARING_FORMAT && isRepSharingAllowed) {
            //TODO: open rep cache
        }
View Full Code Here


    private SVNConfigFile loadConfig() {
        File confFile = getConfigFile();
        if (myDBFormat < MIN_REP_SHARING_FORMAT || !confFile.exists()) {
            return null;
        }
        myConfig = new SVNConfigFile(confFile);
        return myConfig;
    }
View Full Code Here

TOP

Related Classes of org.tmatesoft.svn.core.internal.wc.SVNConfigFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.