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:02:53 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_5_5 98204066d -> 54c520c75


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

Branch: refs/heads/branch_5_5
Commit: 54c520c7541958b9a2ea6108b967cb52e890e479
Parents: 9820406
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:02:44 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/54c520c7/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>