Remove unused method isDeltaAttempted()

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
This commit is contained in:
Shawn Pearce 2013-04-04 11:03:30 -07:00
parent 594d4ceb12
commit 876a2ffb21
1 changed files with 0 additions and 4 deletions

View File

@ -258,10 +258,6 @@ boolean doNotAttemptDelta() {
return (flags & ATTEMPT_DELTA_MASK) == ATTEMPT_DELTA_MASK;
}
boolean isDeltaAttempted() {
return (flags & DELTA_ATTEMPTED) != 0;
}
void setDeltaAttempted(boolean deltaAttempted) {
if (deltaAttempted)
flags |= DELTA_ATTEMPTED;