mirror of
https://github.com/corda/corda.git
synced 2025-06-19 15:43:52 +00:00
classpath progress
This commit is contained in:
@ -22,6 +22,14 @@ public class PrintStream extends OutputStream {
|
||||
} catch (IOException e) { }
|
||||
}
|
||||
|
||||
public void print(Object o) {
|
||||
print(o.toString());
|
||||
}
|
||||
|
||||
public void print(char c) {
|
||||
print(String.valueOf(c));
|
||||
}
|
||||
|
||||
public synchronized void println(String s) {
|
||||
try {
|
||||
out.write(s.getBytes());
|
||||
@ -36,6 +44,14 @@ public class PrintStream extends OutputStream {
|
||||
if (autoFlush) flush();
|
||||
} catch (IOException e) { }
|
||||
}
|
||||
|
||||
public void println(Object o) {
|
||||
println(o.toString());
|
||||
}
|
||||
|
||||
public void println(char c) {
|
||||
println(String.valueOf(c));
|
||||
}
|
||||
|
||||
public void write(int c) throws IOException {
|
||||
out.write(c);
|
||||
|
Reference in New Issue
Block a user