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
}