(String s)
| 40 | } |
| 41 | |
| 42 | public synchronized void print(String s) { |
| 43 | try { |
| 44 | out.write(s.getBytes()); |
| 45 | if (autoFlush) flush(); |
| 46 | } catch (IOException e) { } |
| 47 | } |
| 48 | |
| 49 | public void print(Object o) { |
| 50 | print(String.valueOf(o)); |
no test coverage detected