mirror of https://github.com/apache/lucene.git
use standard OR operator (||) instead of binary OR (|) for cleaner code
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150433 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fe4ccc7e54
commit
b9c9f81ed2
|
@ -115,7 +115,7 @@ final class BooleanScorer extends Scorer {
|
|||
more = true;
|
||||
}
|
||||
}
|
||||
} while (bucketTable.first != null | more);
|
||||
} while (bucketTable.first != null || more);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue