Remove the unused method PackFile.hasExt().

It will be used in a future change, so just include it with that change.

Change-Id: I7db28d86f8e8b282a403acd9a4c4defaae828f94
This commit is contained in:
Colby Ranger 2013-03-04 14:16:36 -08:00
parent 4a317a1790
commit 1512d0ab4e
1 changed files with 0 additions and 7 deletions

View File

@ -97,8 +97,6 @@ public int compare(final PackFile a, final PackFile b) {
private final File packFile;
private final int extensions;
private File keepFile;
private volatile String packName;
@ -146,7 +144,6 @@ public int compare(final PackFile a, final PackFile b) {
public PackFile(final File packFile, int extensions) {
this.packFile = packFile;
this.packLastModified = (int) (packFile.lastModified() >> 10);
this.extensions = extensions;
// Multiply by 31 here so we can more directly combine with another
// value in WindowCache.hash(), without doing the multiply there.
@ -1090,8 +1087,4 @@ private File extFile(PackExt ext) {
String b = (dot < 0) ? p : p.substring(0, dot);
return new File(packFile.getParentFile(), b + '.' + ext.getExtension());
}
private boolean hasExt(PackExt ext) {
return (extensions & ext.getBit()) != 0;
}
}