JAVA-9555: Fix YahooQuoteManagerImpl

This commit is contained in:
Krzysiek
2022-01-24 10:31:06 +01:00
parent efecc6f193
commit 60ec3c67ca

View File

@@ -24,7 +24,7 @@ public class YahooQuoteManagerImpl implements QuoteManager {
StringBuilder sb = new StringBuilder();
Currency.getAvailableCurrencies().forEach(currency -> {
if (!currency.equals(currency.getCurrencyCode())) {
if (!baseCurrency.equals(currency.getCurrencyCode())) {
sb.append(baseCurrency).append(currency.getCurrencyCode()).append("=X").append(",");
}
});