removed unused property

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@620760 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2008-02-12 11:11:05 +00:00
parent be6376373f
commit da46fffc54
1 changed files with 0 additions and 3 deletions

View File

@ -29,7 +29,6 @@ public class BitArrayBin {
private int maxNumberOfArrays;
private int firstIndex = -1;
private int firstBin = -1;
private long lastBitSet=-1;
private long lastInOrderBit=-1;
/**
@ -63,9 +62,7 @@ public class BitArrayBin {
answer = ba.set(offset, value);
}
if (value) {
lastBitSet=index;
}else {
lastBitSet=-1;
}
}
return answer;