You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2013/01/31 21:55:30 UTC

svn commit: r1441187 - /lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java

Author: rmuir
Date: Thu Jan 31 20:55:30 2013
New Revision: 1441187

URL: http://svn.apache.org/viewvc?rev=1441187&view=rev
Log:
fix javadocs/nocommit

Modified:
    lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java

Modified: lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java?rev=1441187&r1=1441186&r2=1441187&view=diff
==============================================================================
--- lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java (original)
+++ lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java Thu Jan 31 20:55:30 2013
@@ -90,11 +90,7 @@ public abstract class SortedDocValues ex
    *  Arrays.binarySearch}.
    *
    *  @param key Key to look up
-   *  @param spare Spare BytesRef
    **/
-  // nocommit: what does spare mean? its no spare: because people rely upon its return value!
-  // if its 'result' then the parameter and javadoc needs changing, otherwise things need fixing
-  // unconditionally set its value to "NONSENSE" bytes to see the bugs!
   public int lookupTerm(BytesRef key) {
     BytesRef spare = new BytesRef();
     int low = 0;