(byte[] input)
| 88 | * Print a byte[], for debug purposes. |
| 89 | */ |
| 90 | public static void printByteArray(byte[] input) |
| 91 | { |
| 92 | for (int i = 0; i < input.length; i++ ) { |
| 93 | System.out.format("%02X ", input[i]); |
| 94 | } |
| 95 | System.out.println(); |
| 96 | } |
| 97 | |
| 98 | } |
| 99 |
nothing calls this directly
no outgoing calls
no test coverage detected