fix stale javadocs

This commit is contained in:
Mike McCandless 2016-04-25 11:14:39 -04:00
parent fd7b2159d8
commit fe795c9f7a
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ import org.apache.lucene.util.BytesRef;
/** A field that is indexed but not tokenized: the entire /** A field that is indexed but not tokenized: the entire
* String value is indexed as a single token. For example * String value is indexed as a single token. For example
* this might be used for a 'country' field or an 'id' * this might be used for a 'country' field or an 'id'
* field, or any field that you intend to use for sorting * field. If you also need to sort on this field, separately
* or access through the field cache. */ * add a {@link SortedDocValuesField} to your document. */
public final class StringField extends Field { public final class StringField extends Field {