1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-29 14:05:25 +01:00

Update LogAmounts.java

This commit is contained in:
montlikadani 2018-08-16 18:21:18 +02:00 committed by GitHub
parent 9f0a9d7be9
commit 13311e7348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ public final class LogAmounts {
private String item;
private int count = 0;
private HashMap<CurrencyType, Double> amounts = new HashMap<CurrencyType, Double>();
private HashMap<CurrencyType, Double> amounts = new HashMap<>();
private boolean newEntry = true;
@ -81,4 +81,4 @@ public final class LogAmounts {
return this.action;
}
}
}