Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit b4aa331

Browse files
authored
Merge pull request #50 from Mearman/master
fix minor typo. No problem for the RIs, the API changes would require JCP membership to merge them directly, but it is such a small occurrence, I hope you are OK if we do this based on the other API codebase instead of merging? If you are interested to join the JCP as Associate or other member, we'd be very happy to have you help with the next version(s) of JavaMoney.
2 parents 8dbd134 + 6542f74 commit b4aa331

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/javamoney/moneta/internal/DefaultMonetaryCurrenciesSingletonSpi.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private List<CurrencyProviderSpi> collectProviders(CurrencyQuery query) {
5858
for (String providerName : query.getProviderNames()) {
5959
CurrencyProviderSpi provider = getProvider(providerName);
6060
if (provider == null) {
61-
Logger.getLogger(DefaultMonetaryCurrenciesSingletonSpi.class.getName()).warning("No such currenvcy " +
61+
Logger.getLogger(DefaultMonetaryCurrenciesSingletonSpi.class.getName()).warning("No such currency " +
6262
"provider found, ignoring: " + providerName);
6363
} else {
6464
result.add(provider);
@@ -69,7 +69,7 @@ private List<CurrencyProviderSpi> collectProviders(CurrencyQuery query) {
6969
for(String providerName:getDefaultProviderChain()){
7070
CurrencyProviderSpi provider = getProvider(providerName);
7171
if (provider == null) {
72-
Logger.getLogger(DefaultMonetaryCurrenciesSingletonSpi.class.getName()).warning("No such currenvcy " +
72+
Logger.getLogger(DefaultMonetaryCurrenciesSingletonSpi.class.getName()).warning("No such currency " +
7373
"provider found, ignoring: " + providerName);
7474
} else {
7575
result.add(provider);

0 commit comments

Comments
 (0)