mirror of https://github.com/apache/lucene.git
fix broken homemade javadocs links
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1329014 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c8b4f6d473
commit
63700ceef7
|
@ -238,8 +238,8 @@ public class Field implements IndexableField {
|
|||
}
|
||||
|
||||
/**
|
||||
* 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 IndexableField {
|
|||
}
|
||||
|
||||
/**
|
||||
* 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.
|
||||
|
|
Loading…
Reference in New Issue