diff options
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackFile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackFile.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackFile.java index 3ae0b8f390..2bf0b96f6b 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackFile.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackFile.java @@ -87,7 +87,7 @@ import org.eclipse.jgit.util.RawParseUtils; */ public class PackFile implements Iterable<PackIndex.MutableEntry> { /** Sorts PackFiles to be most recently created to least recently created. */ - public static Comparator<PackFile> SORT = new Comparator<PackFile>() { + public static final Comparator<PackFile> SORT = new Comparator<PackFile>() { public int compare(final PackFile a, final PackFile b) { return b.packLastModified - a.packLastModified; } |