mirror of
https://github.com/corda/corda.git
synced 2025-06-15 21:58:17 +00:00
flesh out resource URL scheme implementation
This commit is contained in:
@ -66,11 +66,15 @@ public class PrintWriter extends Writer {
|
||||
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