mirror of https://github.com/apache/lucene.git
Apply wolfgangs fix to the tests
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@167835 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
572633f8c4
commit
2a37a3e820
|
@ -773,10 +773,10 @@ public class MemoryIndex {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean skipTo(int target) {
|
public boolean skipTo(int target) {
|
||||||
if (DEBUG) System.err.println(".skipTo");
|
if (DEBUG) System.err.println(".skipTo: " + target);
|
||||||
return false;
|
return next();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void close() {
|
public void close() {
|
||||||
if (DEBUG) System.err.println(".close");
|
if (DEBUG) System.err.println(".close");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue