(byte[] data, int ofs, int length)
| 29 | } |
| 30 | |
| 31 | public void send(byte[] data, int ofs, int length) throws IOException { |
| 32 | synchronized (outStream) { |
| 33 | outStream.write(data, ofs, length); |
| 34 | } |
| 35 | } |
| 36 | public void send(byte[] data) throws IOException { |
| 37 | send(data, 0, data.length); |
| 38 | } |
no test coverage detected