Skip to content

Commit

Permalink
fix : 통화코드 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Dayon-Hong committed Jul 18, 2024
1 parent ffa951a commit 73840b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private void updateRatesForBaseCurrency(String baseCurrency) {

/** 지원하는 통화만 가져오는 메서드 **/
private boolean isSupportedCurrency(String currencyCode) {
return Set.of("JPY", "GBP", "EURO", "CHF", "CZK", "USD", "SGD", "TWD", "LAK", "MYR", "VND", "THB", "IDR", "PHP", "KRW").contains(currencyCode);
return Set.of("JPY", "GBP", "EUR", "CHF", "CZK", "USD", "SGD", "TWD", "LAK", "MYR", "VND", "THB", "IDR", "PHP", "KRW").contains(currencyCode);
}


Expand Down

0 comments on commit 73840b5

Please sign in to comment.