diff --git a/src/test/java/CmdInterpreter.java b/src/test/java/CmdInterpreter.java index c1071ca..63735f4 100644 --- a/src/test/java/CmdInterpreter.java +++ b/src/test/java/CmdInterpreter.java @@ -831,8 +831,8 @@ private String Load(String cmd) try { File loadFile = new File("src/test/resources/" + args[0]); - /*Scanner fr = new Scanner(loadFile); - String line; + Scanner fr = new Scanner(loadFile); + /*String line; while(fr.hasNextLine()) { line = fr.nextLine(); @@ -842,8 +842,8 @@ private String Load(String cmd) //System.out.println(NewCommand(line)); } } - fr.close(); */ + fr.close(); return "[SIKERES] " + args[0] + " betoltve"; } catch(Exception e) diff --git a/target/test-classes/CmdInterpreter.class b/target/test-classes/CmdInterpreter.class index 5a0c1b3..7710ca7 100644 Binary files a/target/test-classes/CmdInterpreter.class and b/target/test-classes/CmdInterpreter.class differ