From 830899d0b97ae4655c8776697133b3a524823b05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bokros=20B=C3=A1lint?= Date: Sat, 14 May 2016 13:21:40 +0200 Subject: [PATCH] Replaced explicit type argument with diamond expression --- cicaprojekt/Tile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cicaprojekt/Tile.java b/cicaprojekt/Tile.java index 3683209..b8ef69a 100644 --- a/cicaprojekt/Tile.java +++ b/cicaprojekt/Tile.java @@ -14,7 +14,7 @@ public abstract class Tile { public Tile() { - adjacentTile = new HashMap(); + adjacentTile = new HashMap<>(); boxStack = new Stack<>(); }