mirror of https://github.com/apache/lucene.git
SOLR-13388: Fix FileExchangeRateProvider to be a public class, as it appears in schema.xml
This commit is contained in:
parent
2ed86c6d54
commit
eafe42f090
|
@ -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-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
|
Improvements
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ import org.xml.sax.SAXException;
|
||||||
/**
|
/**
|
||||||
* Configuration for currency. Provides currency exchange rates.
|
* 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());
|
private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
|
||||||
|
|
||||||
protected static final String PARAM_CURRENCY_CONFIG = "currencyConfig";
|
protected static final String PARAM_CURRENCY_CONFIG = "currencyConfig";
|
||||||
|
|
Loading…
Reference in New Issue