You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2016/04/25 17:12:36 UTC

lucene-solr:branch_6x: fix stale javadocs

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x fe1ad19af -> f2ebe5f87


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/f2ebe5f8
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/f2ebe5f8
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/f2ebe5f8

Branch: refs/heads/branch_6x
Commit: f2ebe5f87b09f889df1c1a1d30535bcbca423762
Parents: fe1ad19
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:15:35 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/f2ebe5f8/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 {