Replaced explicit type argument with diamond expression

This commit is contained in:
Bokros Bálint 2016-05-14 13:21:40 +02:00
parent 5a617ed04f
commit 830899d0b9

View File

@ -14,7 +14,7 @@ public abstract class Tile {
public Tile() { public Tile() {
adjacentTile = new HashMap<Direction, Tile>(); adjacentTile = new HashMap<>();
boxStack = new Stack<>(); boxStack = new Stack<>();
} }