You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2014/06/17 00:38:52 UTC

svn commit: r1603014 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/MultiDocValues.java

Author: jpountz
Date: Mon Jun 16 22:38:52 2014
New Revision: 1603014

URL: http://svn.apache.org/r1603014
Log:
Remove javadoc @see tag. I can't manage to make it work with precommit.

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/MultiDocValues.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/MultiDocValues.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/MultiDocValues.java?rev=1603014&r1=1603013&r2=1603014&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/MultiDocValues.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/MultiDocValues.java Mon Jun 16 22:38:52 2014
@@ -495,8 +495,7 @@ public class MultiDocValues {
       this.ramBytesUsed = ramBytesUsed;
     }
 
-    /** Create an {@link OrdinalMap} with the default overhead ratio.
-     *  @see #OrdinalMap(Object, TermsEnum[], float)  */
+    /** Create an {@link OrdinalMap} with the default overhead ratio. */
     public OrdinalMap(Object owner, TermsEnum subs[]) throws IOException {
       this(owner, subs, PackedInts.DEFAULT);
     }