remove unused code

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@202435 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2005-06-29 21:39:03 +00:00
parent 096a69aec4
commit 5bf11bffaf
1 changed files with 0 additions and 9 deletions

View File

@ -79,14 +79,5 @@ public class CheckHits {
}
}
public static void printDocNrs(Hits hits) throws IOException {
System.out.print("new int[] {");
for (int i = 0; i < hits.length(); i++) {
System.out.print(hits.id(i));
if (i != hits.length()-1)
System.out.print(", ");
}
System.out.println("}");
}
}