You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2019/04/10 16:54:21 UTC

[lucene-solr] branch master updated: SOLR-13388: Fix FileExchangeRateProvider to be a public class, as it appears in schema.xml

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

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


The following commit(s) were added to refs/heads/master by this push:
     new eafe42f  SOLR-13388: Fix FileExchangeRateProvider to be a public class, as it appears in schema.xml
eafe42f is described below

commit eafe42f090b4247ec876753c4e00ba68f5ecd3c1
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Wed Apr 10 18:53:51 2019 +0200

    SOLR-13388: Fix FileExchangeRateProvider to be a public class, as it appears in schema.xml
---
 solr/CHANGES.txt                                                        | 2 ++
 solr/core/src/java/org/apache/solr/schema/FileExchangeRateProvider.java | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 80815e6..a3e5af8 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -168,6 +168,8 @@ Bug Fixes
 
 * SOLR-13331: Atomic Update 'remove' operations broken for certain field types in SolrJ (Thomas Wockinger via Jason Gerlowski)
 
+* SOLR-13388: Fix FileExchangeRateProvider to be a public class, as it appears in schema.xml (Uwe Schindler)
+
 Improvements
 ----------------------
 
diff --git a/solr/core/src/java/org/apache/solr/schema/FileExchangeRateProvider.java b/solr/core/src/java/org/apache/solr/schema/FileExchangeRateProvider.java
index 4836764..fe3f2fd 100644
--- a/solr/core/src/java/org/apache/solr/schema/FileExchangeRateProvider.java
+++ b/solr/core/src/java/org/apache/solr/schema/FileExchangeRateProvider.java
@@ -43,7 +43,7 @@ import org.xml.sax.SAXException;
 /**
  * Configuration for currency. Provides currency exchange rates.
  */
-class FileExchangeRateProvider implements ExchangeRateProvider {
+public class FileExchangeRateProvider implements ExchangeRateProvider {
   private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
 
   protected static final String PARAM_CURRENCY_CONFIG       = "currencyConfig";