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 2012/04/23 02:59:22 UTC

svn commit: r1329014 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/document/Field.java

Author: rmuir
Date: Mon Apr 23 00:59:22 2012
New Revision: 1329014

URL: http://svn.apache.org/viewvc?rev=1329014&view=rev
Log:
fix broken homemade javadocs links

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/document/Field.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/document/Field.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/document/Field.java?rev=1329014&r1=1329013&r2=1329014&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/document/Field.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/document/Field.java Mon Apr 23 00:59:22 2012
@@ -238,8 +238,8 @@ public class Field implements IndexableF
   }
   
   /**
-   * Expert: change the value of this field. See <a
-   * href="#setValue(java.lang.String)">setValue(String)</a>.
+   * Expert: change the value of this field. See 
+   * {@link #setStringValue(String)}.
    */
   public void setReaderValue(Reader value) {
     if (!(fieldsData instanceof Reader)) {
@@ -249,16 +249,16 @@ public class Field implements IndexableF
   }
   
   /**
-   * Expert: change the value of this field. See <a
-   * href="#setValue(java.lang.String)">setValue(String)</a>.
+   * Expert: change the value of this field. See 
+   * {@link #setStringValue(String)}.
    */
   public void setBytesValue(byte[] value) {
     setBytesValue(new BytesRef(value));
   }
 
   /**
-   * Expert: change the value of this field. See <a
-   * href="#setValue(java.lang.String)">setValue(String)</a>.
+   * Expert: change the value of this field. See 
+   * {@link #setStringValue(String)}.
    *
    * <p>NOTE: the provided BytesRef is not copied so be sure
    * not to change it until you're done with this field.