You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ds...@apache.org on 2016/04/27 20:22:11 UTC

[27/50] [abbrv] lucene-solr:solr-5750: fix stale javadocs

fix stale javadocs


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/fe795c9f
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/fe795c9f
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/fe795c9f

Branch: refs/heads/solr-5750
Commit: fe795c9f7a5e936fe7ed6dd33e5d39105624683e
Parents: fd7b215
Author: Mike McCandless <mi...@apache.org>
Authored: Mon Apr 25 11:14:39 2016 -0400
Committer: Mike McCandless <mi...@apache.org>
Committed: Mon Apr 25 11:14:39 2016 -0400

----------------------------------------------------------------------
 lucene/core/src/java/org/apache/lucene/document/StringField.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/fe795c9f/lucene/core/src/java/org/apache/lucene/document/StringField.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/document/StringField.java b/lucene/core/src/java/org/apache/lucene/document/StringField.java
index b3c7fe0..7b968b6 100644
--- a/lucene/core/src/java/org/apache/lucene/document/StringField.java
+++ b/lucene/core/src/java/org/apache/lucene/document/StringField.java
@@ -23,8 +23,8 @@ import org.apache.lucene.util.BytesRef;
 /** A field that is indexed but not tokenized: the entire
  *  String value is indexed as a single token.  For example
  *  this might be used for a 'country' field or an 'id'
- *  field, or any field that you intend to use for sorting
- *  or access through the field cache. */
+ *  field.  If you also need to sort on this field, separately
+ *  add a {@link SortedDocValuesField} to your document. */
 
 public final class StringField extends Field {