SOLR-13388: Fix FileExchangeRateProvider to be a public class, as it appears in schema.xml

This commit is contained in:
Uwe Schindler 2019-04-10 18:53:51 +02:00
parent 2ed86c6d54
commit eafe42f090
2 changed files with 3 additions and 1 deletions

View File

@ -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
----------------------

View File

@ -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";