Skip to content

Commit

Permalink
fixed wrong index
Browse files Browse the repository at this point in the history
  • Loading branch information
jonalv authored and egonw committed Jul 28, 2012
1 parent 7ffa16e commit 91d0590
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void and(IntArrayFingerprint fingerprint) {
while ( i<trueBits.length &&
j<fingerprint.trueBits.length ) {
int local = trueBits[i];
int remote = fingerprint.trueBits[i];
int remote = fingerprint.trueBits[j];
if (local == remote) {
tmp.add(local);
i++; j++;
Expand Down

0 comments on commit 91d0590

Please sign in to comment.