Package org.eclipse.jgit.internal.storage.dfs.DfsObjDatabase

Examples of org.eclipse.jgit.internal.storage.dfs.DfsObjDatabase.PackSource


   * @param b
   *            the other pack.
   */
  public int compareTo(DfsPackDescription b) {
    // Cluster by PackSource, pushing UNREACHABLE_GARBAGE to the end.
    PackSource as = getPackSource();
    PackSource bs = b.getPackSource();
    if (as != null && bs != null) {
      int cmp = as.category - bs.category;
      if (cmp != 0)
        return cmp;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.internal.storage.dfs.DfsObjDatabase.PackSource

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.