summaryrefslogtreecommitdiffstats
path: root/io/ReadFile.java
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2012-11-10 17:31:36 +0530
committerrsiddharth <rsiddharth@ninthfloor.org>2012-11-10 17:31:36 +0530
commit0637e50adf2490a98695bd3b63db12f32f8af631 (patch)
tree18446a430ad8c17833bb23a4e95383d8c9e2ca0d /io/ReadFile.java
parentd2f10460050965fa11e046bd6967b08a0e5e49b7 (diff)
parentab443161eaa4cb631423884972108785ce764269 (diff)
merged from devel branch
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();