You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2016/07/21 13:38:08 UTC

[46/51] [abbrv] lucene-solr:apiv2: Tweak LeafFieldComparator javadocs (duplicate and copy/paste).

Tweak LeafFieldComparator javadocs (duplicate and copy/paste).


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/ee44da66
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/ee44da66
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/ee44da66

Branch: refs/heads/apiv2
Commit: ee44da6662fd4e7c3bc3156e5df3a29a7acaef4b
Parents: 9aa639d
Author: Christine Poerschke <cp...@apache.org>
Authored: Wed Jul 20 11:42:27 2016 +0100
Committer: Christine Poerschke <cp...@apache.org>
Committed: Wed Jul 20 11:48:21 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/lucene/search/LeafFieldComparator.java    | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/ee44da66/lucene/core/src/java/org/apache/lucene/search/LeafFieldComparator.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/search/LeafFieldComparator.java b/lucene/core/src/java/org/apache/lucene/search/LeafFieldComparator.java
index bbf1de8..7f84953 100644
--- a/lucene/core/src/java/org/apache/lucene/search/LeafFieldComparator.java
+++ b/lucene/core/src/java/org/apache/lucene/search/LeafFieldComparator.java
@@ -38,9 +38,6 @@ import java.io.IOException;
  *  <li> {@link #compareBottom} Compare a new hit (docID)
  *       against the "weakest" (bottom) entry in the queue.
  *
- *  <li> {@link #compareBottom} Compare a new hit (docID)
- *       against the "weakest" (bottom) entry in the queue.
- *
  *  <li> {@link #compareTop} Compare a new hit (docID)
  *       against the top value previously set by a call to
  *       {@link FieldComparator#setTopValue}.
@@ -95,8 +92,8 @@ public interface LeafFieldComparator {
    *    
    * @param doc that was hit
    * @return any {@code N < 0} if the doc's value is sorted after
-   * the bottom entry (not competitive), any {@code N > 0} if the
-   * doc's value is sorted before the bottom entry and {@code 0} if
+   * the top entry (not competitive), any {@code N > 0} if the
+   * doc's value is sorted before the top entry and {@code 0} if
    * they are equal.
    */
   int compareTop(int doc) throws IOException;