(int n)
| 1220 | } |
| 1221 | |
| 1222 | public static int num2Hex(int n) { |
| 1223 | return n + '0' + (((9 - n) >> 31) & ('A' - '9' - 1)); |
| 1224 | } |
| 1225 | |
| 1226 | public void write(final byte[] str, final boolean noQuote) { |
| 1227 | write(str, 0, str.length, noQuote); |
no outgoing calls
no test coverage detected