LUCENE-5375: fix javadocs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1558350 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2014-01-15 12:14:46 +00:00
parent 7ca8467b64
commit 32ca6db738
1 changed files with 4 additions and 1 deletions

View File

@ -46,7 +46,10 @@ import org.apache.lucene.util.FixedBitSet;
public class ToChildBlockJoinQuery extends Query {
public static final String INVALID_QUERY_MESSAGE = "Parent query yields document which is not matched by parents filter, docID=";
/** Message thrown from {@link
* ToChildBlockJoinScorer#validateParentDoc} on mis-use,
* when the parent query incorrectly returns child docs. */
static final String INVALID_QUERY_MESSAGE = "Parent query yields document which is not matched by parents filter, docID=";
private final Filter parentsFilter;
private final Query parentQuery;