mirror of https://github.com/apache/lucene.git
- Compilation error fix.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149853 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4840a8422b
commit
0b2bd2cd3d
|
@ -116,7 +116,7 @@ final class SegmentsReader extends IndexReader
|
|||
|
||||
private final int readerIndex(int n) { // find reader for doc n:
|
||||
int lo = 0; // search starts array
|
||||
int hi = readers.length - 1 // for first element less
|
||||
int hi = readers.length - 1; // for first element less
|
||||
|
||||
while (hi >= lo) {
|
||||
int mid = (lo + hi) >> 1;
|
||||
|
|
Loading…
Reference in New Issue