summaryrefslogtreecommitdiffstats
path: root/io
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2012-10-31 22:00:35 +0530
committerrsiddharth <rsiddharth@ninthfloor.org>2012-10-31 22:00:35 +0530
commit1f61844084d9e9383b3be04ff8f60c11eb628075 (patch)
tree069d147029f06b5a5e82b92a20c440ea3ab802ec /io
parent0019988533c9c1b2a4bfad50b3e0427babefb1bb (diff)
modified:
conversion/ConvertDirectory.java (minor edit) index/IndexCreator.java (removed code which (1) creates a index file, if it is not present (2) checks for the existence of index.html) io/WriteFile.java (made the stdout message more verbose) parsers/Header.java ('scruf' footer links to scruf's project page) todo (1 task completed)
Diffstat (limited to 'io')
-rw-r--r--io/WriteFile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/WriteFile.java b/io/WriteFile.java
index d19bb72..0a2a1e7 100644
--- a/io/WriteFile.java
+++ b/io/WriteFile.java
@@ -32,7 +32,7 @@ public class WriteFile {
}
public void write() {
try {
- System.out.println("Writing..."+outputFile.getName());
+ System.out.println("Writing..."+outputFile.getAbsolutePath());
BufferedWriter bwriter = new BufferedWriter
(new FileWriter(outputFile));
// write content to file.