call static methods via class, not via object (better style, no functional change)

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150584 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-10-10 15:44:09 +00:00
parent ef02d9af38
commit a25fdef56d
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public class CheckHits {
actual.add(new Integer(hits.id(i)));
}
testCase.assertEquals(query.toString(defaultFieldName), correct, actual);
TestCase.assertEquals(query.toString(defaultFieldName), correct, actual);
}
public static void printDocNrs(Hits hits) throws IOException {