(int bytes, int offset, byte[] buffer)
| 227 | } |
| 228 | |
| 229 | private void addTwoBytes(int bytes, int offset, byte[] buffer) throws IOException { |
| 230 | buffer[offset] = (byte) (bytes & 0xff); |
| 231 | buffer[offset + 1] = (byte) ((bytes >> 8) & 0xff); |
| 232 | } |
| 233 | |
| 234 | private void addFourBytes(int bytes, int offset, byte[] buffer) throws IOException { |
| 235 | buffer[offset] = (byte) (bytes & 0xff); |
no outgoing calls
no test coverage detected