Removed redundant initialization

This commit is contained in:
Bokros Bálint 2016-05-14 13:48:19 +02:00
parent f8eb39d2fb
commit 2b81b8ae03

View File

@ -61,7 +61,7 @@ public class Dungeon {
Tile[][] dungeon = new Tile[width][height]; Tile[][] dungeon = new Tile[width][height];
String line = null; String line;
Gate tempgate = new Gate(); Gate tempgate = new Gate();
Scale tempscale = new Scale(tempgate, Integer.MAX_VALUE); Scale tempscale = new Scale(tempgate, Integer.MAX_VALUE);
int scalecount = 0; int scalecount = 0;