You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ab...@apache.org on 2020/08/17 14:41:02 UTC

[lucene-solr] branch branch_8x updated: SOLR-13858: Remove no longer used field and getter.

This is an automated email from the ASF dual-hosted git repository.

ab pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new cd8b8c5  SOLR-13858: Remove no longer used field and getter.
cd8b8c5 is described below

commit cd8b8c5936e447fcc7a51a50dfe0280884c5c9a0
Author: Andrzej Bialecki <ab...@apache.org>
AuthorDate: Mon Aug 17 14:47:38 2020 +0200

    SOLR-13858: Remove no longer used field and getter.
---
 solr/core/src/java/org/apache/solr/core/SolrCore.java | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/solr/core/src/java/org/apache/solr/core/SolrCore.java b/solr/core/src/java/org/apache/solr/core/SolrCore.java
index 0073c0f..ca7865b 100644
--- a/solr/core/src/java/org/apache/solr/core/SolrCore.java
+++ b/solr/core/src/java/org/apache/solr/core/SolrCore.java
@@ -240,7 +240,6 @@ public final class SolrCore implements SolrInfoBean, SolrMetricProducer, Closeab
   private Counter newSearcherMaxReachedCounter;
   private Counter newSearcherOtherErrorsCounter;
 
-  private Set<String> metricNames = ConcurrentHashMap.newKeySet();
   private final String metricTag = SolrMetricProducer.getUniqueMetricTag(this, null);
   private final SolrMetricsContext solrMetricsContext;
 
@@ -250,10 +249,6 @@ public final class SolrCore implements SolrInfoBean, SolrMetricProducer, Closeab
 
   private PackageListeners packageListeners = new PackageListeners(this);
 
-  public Set<String> getMetricNames() {
-    return metricNames;
-  }
-
   public Date getStartTimeStamp() {
     return startTime;
   }