summaryrefslogtreecommitdiffstats
path: root/io/ReadFile.java
diff options
context:
space:
mode:
Diffstat (limited to 'io/ReadFile.java')
-rw-r--r--io/ReadFile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/ReadFile.java b/io/ReadFile.java
index beccdc3..2607b16 100644
--- a/io/ReadFile.java
+++ b/io/ReadFile.java
@@ -44,7 +44,7 @@ public class ReadFile {
new FileReader(file));
}catch(FileNotFoundException e) {
throw new RuntimeException("Unable to open file :"
- +file.getName());
+ +file.getAbsolutePath());
}
String line;
StringBuilder sbuilder = new StringBuilder();