- 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:
Otis Gospodnetic 2002-09-19 05:51:04 +00:00
parent 4840a8422b
commit 0b2bd2cd3d
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ final class SegmentsReader extends IndexReader
private final int readerIndex(int n) { // find reader for doc n: private final int readerIndex(int n) { // find reader for doc n:
int lo = 0; // search starts array 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) { while (hi >= lo) {
int mid = (lo + hi) >> 1; int mid = (lo + hi) >> 1;