(long l)
| 46 | } |
| 47 | |
| 48 | private byte[] longToByteArray(long l) { |
| 49 | ByteBuffer buf = ByteBuffer.allocate(Long.BYTES); |
| 50 | buf.putLong(l); |
| 51 | return buf.array(); |
| 52 | } |
| 53 | |
| 54 | private long longFromByteArray(byte[] a) { |
| 55 | ByteBuffer buf = ByteBuffer.allocate(Long.BYTES); |
no outgoing calls
no test coverage detected