(int a, int b, int c, int d, int e, int f,
int g, int h)
| 165 | } |
| 166 | |
| 167 | private static byte[] toByteArray(int a, int b, int c, int d, int e, int f, |
| 168 | int g, int h) throws IOException { |
| 169 | ByteArrayOutputStream baos = new ByteArrayOutputStream(32); |
| 170 | baos.write(toByteArray(a)); |
| 171 | baos.write(toByteArray(b)); |
| 172 | baos.write(toByteArray(c)); |
| 173 | baos.write(toByteArray(d)); |
| 174 | baos.write(toByteArray(e)); |
| 175 | baos.write(toByteArray(f)); |
| 176 | baos.write(toByteArray(g)); |
| 177 | baos.write(toByteArray(h)); |
| 178 | return baos.toByteArray(); |
| 179 | } |
| 180 | |
| 181 | static byte[] toByteArray(int i) { |
| 182 | byte[] byteArray = new byte[4]; |
no test coverage detected