mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
flesh out resource URL scheme implementation
This commit is contained in:
@ -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) { }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user