add missing diamond operators

This commit is contained in:
Ingmar Goudt 2019-03-04 11:57:53 +01:00
parent 45f665eb1d
commit 553d263526
20 changed files with 24 additions and 24 deletions

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);