(char c)
| 1092 | } |
| 1093 | |
| 1094 | public static boolean notDigit(char c) { |
| 1095 | return c < '0' || c > '9'; |
| 1096 | } |
| 1097 | |
| 1098 | public static double parseDouble(CharSequence sequence) throws NumericException { |
| 1099 | return FastDoubleParser.parseDouble(sequence, true); |
no outgoing calls
no test coverage detected