(String s)
| 49 | } |
| 50 | |
| 51 | public synchronized void println(String s) { |
| 52 | try { |
| 53 | out.write(s.toCharArray()); |
| 54 | out.write(newline); |
| 55 | if (autoFlush) flush(); |
| 56 | } catch (IOException e) { } |
| 57 | } |
| 58 | |
| 59 | public synchronized void println() { |
| 60 | try { |
nothing calls this directly
no test coverage detected