From 2b81b8ae03ecb2ff64fb0e25037dae0f17a54b44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bokros=20B=C3=A1lint?= Date: Sat, 14 May 2016 13:48:19 +0200 Subject: [PATCH] Removed redundant initialization --- cicaprojekt/Dungeon.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cicaprojekt/Dungeon.java b/cicaprojekt/Dungeon.java index b42401a..ee3502b 100644 --- a/cicaprojekt/Dungeon.java +++ b/cicaprojekt/Dungeon.java @@ -61,7 +61,7 @@ public class Dungeon { Tile[][] dungeon = new Tile[width][height]; - String line = null; + String line; Gate tempgate = new Gate(); Scale tempscale = new Scale(tempgate, Integer.MAX_VALUE); int scalecount = 0;