mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
Support printing of null references
This commit is contained in:
@ -23,7 +23,7 @@ public class PrintStream extends OutputStream {
|
||||
}
|
||||
|
||||
public void print(Object o) {
|
||||
print(o.toString());
|
||||
print(String.valueOf(o));
|
||||
}
|
||||
|
||||
public void print(char c) {
|
||||
|
Reference in New Issue
Block a user