final tidbits, closing in on 47

This commit is contained in:
benfry
2003-01-06 01:51:40 +00:00
parent 3fa24c43de
commit 99988430fc
7 changed files with 247 additions and 159 deletions

View File

@@ -1116,8 +1116,8 @@ afterwards, some of these steps need a cleanup function
File file = new File(directory, filename);
try {
System.out.println("handleSave: results of getText");
System.out.print(s);
//System.out.println("handleSave: results of getText");
//System.out.print(s);
BufferedReader reader = new BufferedReader(new InputStreamReader(new ByteArrayInputStream(s.getBytes())));
@@ -1126,7 +1126,7 @@ afterwards, some of these steps need a cleanup function
String line = null;
while ((line = reader.readLine()) != null) {
System.out.println("w '" + line + "'");
//System.out.println("w '" + line + "'");
writer.println(line);
}
writer.flush();