Skip to content

Commit

Permalink
Remove accidentally left debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Mar 22, 2024
1 parent bec5ae6 commit 783bc09
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -657,9 +657,7 @@ protected final Float _parseFloat(JsonParser p, DeserializationContext ctxt)
p.streamReadConstraints().validateFPLength(text.length());
try {
return NumberInput.parseFloat(text, p.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER));
} catch (IllegalArgumentException iae) {
if (true) throw new Error();
}
} catch (IllegalArgumentException iae) { }
}
return (Float) ctxt.handleWeirdStringValue(_valueClass, text,
"not a valid `Float` value");
Expand Down

0 comments on commit 783bc09

Please sign in to comment.