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:
Daniel Naber 2004-08-16 11:41:22 +00:00
parent fe4ccc7e54
commit b9c9f81ed2
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ final class BooleanScorer extends Scorer {
more = true; more = true;
} }
} }
} while (bucketTable.first != null | more); } while (bucketTable.first != null || more);
return false; return false;
} }