diff options
Diffstat (limited to 'src/Compiler/Utils.java')
-rw-r--r-- | src/Compiler/Utils.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Compiler/Utils.java b/src/Compiler/Utils.java index f9bd41c..d0206c1 100644 --- a/src/Compiler/Utils.java +++ b/src/Compiler/Utils.java @@ -4,7 +4,6 @@ package Compiler; import java.io.*; -import java.nio.file.Files; public class Utils { // Adapted from here for now @@ -22,7 +21,7 @@ public class Utils { while ((line = br.readLine()) != null) //System.out.println(line); readFile = readFile.append(line + "\n"); - + br.close(); return readFile.toString(); } |