Package org.tmatesoft.hg.internal

Examples of org.tmatesoft.hg.internal.RequiresFile


  }
 
  public RepoInitializer initRequiresFromFile(File repoDir) throws HgInvalidControlFileException {
    File requiresFile = new File(repoDir, "requires"); // not #getFileFromRepoDir() just in case it gets modified later
    try {
      int flags = new RequiresFile().parse(requiresFile);
      return setRequires(flags);
    } catch (IOException ex) {
      throw new HgInvalidControlFileException("Parse failed", ex, requiresFile);
    }
  }
View Full Code Here

TOP

Related Classes of org.tmatesoft.hg.internal.RequiresFile

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.