(String input)
| 29 | private boolean nativeNumbers = false; |
| 30 | |
| 31 | public JSONParser(String input) { |
| 32 | this(new java.io.StringReader(input)); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Parses a JSON object into a Java {@code Map}. |
nothing calls this directly
no test coverage detected