(byte[] data)
| 25 | } |
| 26 | |
| 27 | public void write(byte[] data) throws IOException { |
| 28 | outputStream.write(data); |
| 29 | outputStream.flush(); |
| 30 | } |
| 31 | |
| 32 | public reader read(int length) throws IOException { |
| 33 | byte[] bytes = new byte[length]; |
no outgoing calls
no test coverage detected