(String s)
| 35 | } |
| 36 | |
| 37 | public synchronized void print(String s) { |
| 38 | try { |
| 39 | out.write(s.toCharArray()); |
| 40 | } catch (IOException e) { } |
| 41 | } |
| 42 | |
| 43 | public void print(Object o) { |
| 44 | print(o.toString()); |
nothing calls this directly
no test coverage detected