]> source.dussan.org Git - jgit.git/commitdiff
Remove unused method isDeltaAttempted() 51/11651/1
authorShawn Pearce <spearce@spearce.org>
Thu, 4 Apr 2013 18:03:30 +0000 (11:03 -0700)
committerShawn Pearce <spearce@spearce.org>
Thu, 4 Apr 2013 18:04:32 +0000 (11:04 -0700)
This flag is never checked on its own. It is only checked as part
of a pair through the doNotAttemptDelta() method. Delete the method
so there is less confusion about the flag being used on its own.

Change-Id: Id7088caa649599f4f11d633412c2a2af0fd45dd8

org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/ObjectToPack.java

index 847684fd6eac8c9e19e3fae8b06d3c38cd56bb21..9a070ce3df82e237dbb6bc3968436a975470aed3 100644 (file)
@@ -258,10 +258,6 @@ public class ObjectToPack extends PackedObjectInfo {
                return (flags & ATTEMPT_DELTA_MASK) == ATTEMPT_DELTA_MASK;
        }
 
-       boolean isDeltaAttempted() {
-               return (flags & DELTA_ATTEMPTED) != 0;
-       }
-
        void setDeltaAttempted(boolean deltaAttempted) {
                if (deltaAttempted)
                        flags |= DELTA_ATTEMPTED;