You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2018/11/19 14:49:29 UTC

lucene-solr:branch_7x: SOLR-12972: deprecate unused SolrIndexConfig.luceneVersion

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x b306b4cc5 -> 58ec5ef72


SOLR-12972: deprecate unused SolrIndexConfig.luceneVersion


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

Branch: refs/heads/branch_7x
Commit: 58ec5ef72716e8af632c742b5ccc715bfae23e02
Parents: b306b4c
Author: Christine Poerschke <cp...@apache.org>
Authored: Mon Nov 19 14:06:09 2018 +0000
Committer: Christine Poerschke <cp...@apache.org>
Committed: Mon Nov 19 14:27:43 2018 +0000

----------------------------------------------------------------------
 solr/CHANGES.txt                                               | 3 ++-
 solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java | 2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/58ec5ef7/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 2b402a5..524347e 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -44,7 +44,8 @@ Other Changes
 * SOLR-12981: SolrJ's QueryResponse now has a method `getJsonFacetingResponse()`,
   which allows easier access to the response information for the JSON faceting API. (Jason Gerlowski)
 
-(No Changes)
+* SOLR-12972: deprecate unused SolrIndexConfig.luceneVersion (Christine Poerschke)
+
 Bug Fixes
 ----------------------
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/58ec5ef7/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java b/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java
index 48b2417..0429d49 100644
--- a/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java
+++ b/solr/core/src/java/org/apache/solr/update/SolrIndexConfig.java
@@ -62,6 +62,8 @@ public class SolrIndexConfig implements MapSerializable {
 
   private static final String DEFAULT_MERGE_POLICY_FACTORY_CLASSNAME = DefaultMergePolicyFactory.class.getName();
   public static final String DEFAULT_MERGE_SCHEDULER_CLASSNAME = ConcurrentMergeScheduler.class.getName();
+
+  @Deprecated
   public final Version luceneVersion;
 
   public final boolean useCompoundFile;