(int a, int b)
| 2882 | |
| 2883 | |
| 2884 | private static long pack(int a, int b) { |
| 2885 | return (((long) a) << 32) | (b & 0xffffffffL); |
| 2886 | } |
| 2887 | |
| 2888 | private static int parseInt0(CharSequence sequence, final int p, int lim) throws NumericException { |
| 2889 | if (lim == p) { |
no outgoing calls
no test coverage detected