See gh-41876
@ -93,11 +93,11 @@ public class BasicJsonParser extends AbstractJsonParser {
try {
return Long.valueOf(json);
}
catch (NumberFormatException e) {
catch (NumberFormatException ex) {
return Double.valueOf(json);
catch (NumberFormatException ex2) {
return json;