chore: Formatting fixes

This commit is contained in:
Piotr Dec 2024-05-24 17:50:39 +02:00
parent 94dd43c138
commit 4fcc395a61
Signed by: stawros
GPG key ID: F89F27AD8F881A91
3 changed files with 16 additions and 16 deletions

View file

@ -1,6 +1,6 @@
package eu.ztsh.wymiana.exception; package eu.ztsh.wymiana.exception;
public class ExchangeFailedException extends RuntimeException{ public class ExchangeFailedException extends RuntimeException {
public ExchangeFailedException() { public ExchangeFailedException() {
this("An exchange error has occurred"); this("An exchange error has occurred");

View file

@ -53,7 +53,7 @@ public class CurrencyService {
} }
private Currency create(String symbol) { private Currency create(String symbol) {
// TODO: check if supported // TODO: check if supported - now limited to PLN <-> USD
return new Currency(symbol.toUpperCase(), 0D); return new Currency(symbol.toUpperCase(), 0D);
} }