*/
public class SVNAdminHelper {
public static FSFS openRepository(File reposRootPath) throws SVNException {
FSFS fsfs = new FSFS(reposRootPath);
fsfs.open();
return fsfs;
}
public static long getRevisionNumber(SVNRevision revision, long youngestRevision, FSFS fsfs) throws SVNException {
long revNumber = -1;