(byte a, byte b)
| 642 | } |
| 643 | |
| 644 | public static int compareUnsigned(byte a, byte b) { |
| 645 | return Byte.toUnsignedInt(a) - Byte.toUnsignedInt(b); |
| 646 | } |
| 647 | |
| 648 | public static int decodeHighInt(long val) { |
| 649 | return (int) (val >> 32); |
no outgoing calls
no test coverage detected