(String s)
| 153 | } |
| 154 | |
| 155 | public void writeChars(String s) throws IOException { |
| 156 | blockData(null, null, s.toCharArray()); |
| 157 | } |
| 158 | |
| 159 | public void writeUTF(String s) throws IOException { |
| 160 | byte[] bytes = s.getBytes(); |
nothing calls this directly
no test coverage detected