mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
Fix missing flush in PrintStream
This commit is contained in:
parent
e7a48c0fa2
commit
a26eb1b2b9
@ -31,6 +31,7 @@ public class PrintStream extends OutputStream {
|
||||
public synchronized void print(String s) {
|
||||
try {
|
||||
out.write(s.getBytes());
|
||||
if (autoFlush) flush();
|
||||
} catch (IOException e) { }
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user