You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2016/04/18 23:00:58 UTC

lucene-solr:branch_6x: javadoc: DateField->TrieDateField

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x 55de1ba53 -> bce490c4b


javadoc: DateField->TrieDateField


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

Branch: refs/heads/branch_6x
Commit: bce490c4b707752cba07cd8f8525adedcce78a5a
Parents: 55de1ba
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Apr 18 16:59:23 2016 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Apr 18 17:00:38 2016 -0400

----------------------------------------------------------------------
 .../solr/update/processor/FieldMutatingUpdateProcessorFactory.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/bce490c4/solr/core/src/java/org/apache/solr/update/processor/FieldMutatingUpdateProcessorFactory.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/update/processor/FieldMutatingUpdateProcessorFactory.java b/solr/core/src/java/org/apache/solr/update/processor/FieldMutatingUpdateProcessorFactory.java
index a5c4969..26fe2d7 100644
--- a/solr/core/src/java/org/apache/solr/update/processor/FieldMutatingUpdateProcessorFactory.java
+++ b/solr/core/src/java/org/apache/solr/update/processor/FieldMutatingUpdateProcessorFactory.java
@@ -77,7 +77,7 @@ import org.apache.solr.util.plugin.SolrCoreAware;
  * In the ExampleFieldMutatingUpdateProcessorFactory configured below, 
  * fields will be mutated if the name starts with "foo" <i>or</i> "bar"; 
  * <b>unless</b> the field name contains the substring "SKIP" <i>or</i> 
- * the fieldType is (or subclasses) DateField.  Meaning a field named 
+ * the fieldType is (or subclasses) TrieDateField.  Meaning a field named
  * "foo_SKIP" is guaranteed not to be selected, but a field named "bar_smith" 
  * that uses StrField will be selected.
  * </p>