(String s)
| 82 | } |
| 83 | |
| 84 | public void writeChars(String s) throws IOException { |
| 85 | for (char ch : s.toCharArray()) { |
| 86 | writeChar(ch & 0xffff); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | public void writeBytes(String s) throws IOException { |
| 91 | out.write(s.getBytes()); |
nothing calls this directly
no test coverage detected