From b1f38c6afca837995ba19e2fe000ad02c8ae944f Mon Sep 17 00:00:00 2001 From: muskenum Date: Tue, 29 Mar 2016 02:07:46 +0200 Subject: [PATCH] fixed echoes in the Dungeon class --- cicaprojekt/Dungeon.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cicaprojekt/Dungeon.java b/cicaprojekt/Dungeon.java index 8905cb8..7f471dd 100644 --- a/cicaprojekt/Dungeon.java +++ b/cicaprojekt/Dungeon.java @@ -5,8 +5,8 @@ import java.io.File; public class Dungeon { cicaprojekt.Tile buildDungeon(File input){ Menu.addTab(); - System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Dungeon.buildDungeon(File input)"); - System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Dungeon.buildDungeon(File input)"); + System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Dungeon.buildDungeon(" + input + ")"); + System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Dungeon.buildDungeon()"); Menu.removeTab(); return new cicaprojekt.Field(); /*csak hogy ne sírjon*/ } }