fix compile loadphasemanager

This commit is contained in:
Ingmar Goudt 2019-03-04 12:07:17 +01:00
parent 553d263526
commit 9a1edf7689

View file

@ -36,7 +36,7 @@ public class LoadPhaseManager {
private static Map<PhaseStep, Boolean> skipYou;
static {
skipYou = new HashMap<>() {{
skipYou = new HashMap() {{
put(PhaseStep.UPKEEP, true);
put(PhaseStep.PRECOMBAT_MAIN, true);
put(PhaseStep.BEGIN_COMBAT, true);
@ -50,7 +50,7 @@ public class LoadPhaseManager {
private static Map<PhaseStep, Boolean> skipOthers;
static {
skipYou = new HashMap<>() {{
skipYou = new HashMap() {{
put(PhaseStep.UPKEEP, true);
put(PhaseStep.PRECOMBAT_MAIN, true);
put(PhaseStep.BEGIN_COMBAT, true);