mirror of
https://github.com/PikaMug/Quests.git
synced 2024-11-22 18:45:27 +01:00
Make Map field implementation non-specific to avoid NoSuchMethodError between Java versions
This commit is contained in:
parent
83b7e9e15e
commit
33a728dca8
@ -41,7 +41,7 @@ public class Quester {
|
||||
boolean hasJournal = false;
|
||||
|
||||
public String questToTake;
|
||||
public ConcurrentHashMap<Quest, Integer> currentQuests = new ConcurrentHashMap<Quest, Integer>() {
|
||||
public Map<Quest, Integer> currentQuests = new ConcurrentHashMap<Quest, Integer>() {
|
||||
|
||||
private static final long serialVersionUID = 6361484975823846780L;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user