Package org.eclipse.jgit.storage.file

Examples of org.eclipse.jgit.storage.file.GC$RepoStatistics


  @Override
  public Properties call() throws GitAPIException {
    checkCallable();

    GC gc = new GC((FileRepository) repo);
    gc.setProgressMonitor(monitor);
    if (this.expire != null)
      gc.setExpire(expire);

    try {
      gc.gc();
      return toProperties(gc.getStatistics());
    } catch (IOException e) {
      throw new JGitInternalException(JGitText.get().gcFailed, e);
    } catch (ParseException e) {
      throw new JGitInternalException(JGitText.get().gcFailed, e);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.storage.file.GC$RepoStatistics

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.