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:
Erik Hatcher 2005-05-03 00:33:27 +00:00
parent 572633f8c4
commit 2a37a3e820
1 changed files with 3 additions and 3 deletions

View File

@ -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");
} }