(byte[] buffer)
| 26 | } |
| 27 | |
| 28 | public void write(byte[] buffer) throws IOException { |
| 29 | out.write(buffer); |
| 30 | } |
| 31 | |
| 32 | public void write(byte[] buffer, int offset, int length) throws IOException { |
| 33 | out.write(buffer, offset, length); |
no test coverage detected