mirror of https://github.com/apache/lucene.git
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:
parent
ef02d9af38
commit
a25fdef56d
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue