mirror of
https://github.com/apache/lucene.git
synced 2025-02-08 11:05:29 +00:00
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
|
* Expert: change the value of this field. See
|
||||||
* href="#setValue(java.lang.String)">setValue(String)</a>.
|
* {@link #setStringValue(String)}.
|
||||||
*/
|
*/
|
||||||
public void setReaderValue(Reader value) {
|
public void setReaderValue(Reader value) {
|
||||||
if (!(fieldsData instanceof Reader)) {
|
if (!(fieldsData instanceof Reader)) {
|
||||||
@ -249,16 +249,16 @@ public class Field implements IndexableField {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Expert: change the value of this field. See <a
|
* Expert: change the value of this field. See
|
||||||
* href="#setValue(java.lang.String)">setValue(String)</a>.
|
* {@link #setStringValue(String)}.
|
||||||
*/
|
*/
|
||||||
public void setBytesValue(byte[] value) {
|
public void setBytesValue(byte[] value) {
|
||||||
setBytesValue(new BytesRef(value));
|
setBytesValue(new BytesRef(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Expert: change the value of this field. See <a
|
* Expert: change the value of this field. See
|
||||||
* href="#setValue(java.lang.String)">setValue(String)</a>.
|
* {@link #setStringValue(String)}.
|
||||||
*
|
*
|
||||||
* <p>NOTE: the provided BytesRef is not copied so be sure
|
* <p>NOTE: the provided BytesRef is not copied so be sure
|
||||||
* not to change it until you're done with this field.
|
* not to change it until you're done with this field.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user