1
0
mirror of https://github.com/Zrips/Jobs.git synced 2025-01-02 14:29:07 +01:00

Update Log.java

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

View File

@ -7,7 +7,7 @@ import com.gamingmesh.jobs.stuff.TimeManage;
public final class Log {
private String action;
private int day;
private HashMap<String, LogAmounts> amountMap = new HashMap<String, LogAmounts>();
private HashMap<String, LogAmounts> amountMap = new HashMap<>();
public Log(String action) {
this.action = action;
@ -60,4 +60,4 @@ public final class Log {
return this.amountMap.get(item).get(type);
return 0;
}
}
}