From 13814270396b2afcf675fc9f7dc2b7b0b1a77d81 Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Mon, 23 Apr 2012 00:40:54 +0000 Subject: [PATCH] make test-framework method public and javadoc'ed git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1329011 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/java/org/apache/lucene/search/QueryUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lucene/test-framework/src/java/org/apache/lucene/search/QueryUtils.java b/lucene/test-framework/src/java/org/apache/lucene/search/QueryUtils.java index 6724f8143ed..80b2e6c9a0e 100644 --- a/lucene/test-framework/src/java/org/apache/lucene/search/QueryUtils.java +++ b/lucene/test-framework/src/java/org/apache/lucene/search/QueryUtils.java @@ -360,8 +360,8 @@ public class QueryUtils { } } - // check that first skip on just created scorers always goes to the right doc - private static void checkFirstSkipTo(final Query q, final IndexSearcher s) throws IOException { + /** check that first skip on just created scorers always goes to the right doc */ + public static void checkFirstSkipTo(final Query q, final IndexSearcher s) throws IOException { //System.out.println("checkFirstSkipTo: "+q); final float maxDiff = 1e-3f; final int lastDoc[] = {-1};