flesh out resource URL scheme implementation

This commit is contained in:
Joel Dice
2007-08-10 17:45:47 -06:00
parent 2e9b9fe8d4
commit d3931b4853
15 changed files with 267 additions and 90 deletions

View File

@ -63,11 +63,15 @@ public class PrintStream extends OutputStream {
if (autoFlush) flush();
}
public void flush() throws IOException {
out.flush();
public void flush() {
try {
out.flush();
} catch (IOException e) { }
}
public void close() throws IOException {
out.close();
public void close() {
try {
out.close();
} catch (IOException e) { }
}
}