You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2014/01/15 13:15:26 UTC

svn commit: r1558351 - in /lucene/dev/branches/branch_4x: ./ lucene/ lucene/join/ lucene/join/src/java/org/apache/lucene/search/join/ToChildBlockJoinQuery.java

Author: mikemccand
Date: Wed Jan 15 12:15:25 2014
New Revision: 1558351

URL: http://svn.apache.org/r1558351
Log:
LUCENE-5375: fix javadocs

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/lucene/   (props changed)
    lucene/dev/branches/branch_4x/lucene/join/   (props changed)
    lucene/dev/branches/branch_4x/lucene/join/src/java/org/apache/lucene/search/join/ToChildBlockJoinQuery.java

Modified: lucene/dev/branches/branch_4x/lucene/join/src/java/org/apache/lucene/search/join/ToChildBlockJoinQuery.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/join/src/java/org/apache/lucene/search/join/ToChildBlockJoinQuery.java?rev=1558351&r1=1558350&r2=1558351&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/join/src/java/org/apache/lucene/search/join/ToChildBlockJoinQuery.java (original)
+++ lucene/dev/branches/branch_4x/lucene/join/src/java/org/apache/lucene/search/join/ToChildBlockJoinQuery.java Wed Jan 15 12:15:25 2014
@@ -46,7 +46,10 @@ import org.apache.lucene.util.FixedBitSe
 
 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;