Another place where printing null should be permitted

This commit is contained in:
Eric Scharff 2007-09-27 15:21:39 -06:00
parent 2ae6aa7ddf
commit 0efc498837

View File

@ -46,7 +46,7 @@ public class PrintStream extends OutputStream {
}
public void println(Object o) {
println(o.toString());
println(String.valueOf(o));
}
public void println(char c) {