(byte[] value, boolean prefix)
| 669 | } |
| 670 | |
| 671 | public static String ToHex(byte[] value, boolean prefix) { |
| 672 | return (prefix ? "0x" : "") + binaryToHex(value); |
| 673 | } |
| 674 | |
| 675 | // ==================================================== |
| 676 | // Stubs / unimplemented |
nothing calls this directly
no test coverage detected