Skip to content

Commit 783bc09

Browse files
committed
Remove accidentally left debug statement
1 parent bec5ae6 commit 783bc09

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/com/fasterxml/jackson/databind/deser/std/NumberDeserializers.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -657,9 +657,7 @@ protected final Float _parseFloat(JsonParser p, DeserializationContext ctxt)
657657
p.streamReadConstraints().validateFPLength(text.length());
658658
try {
659659
return NumberInput.parseFloat(text, p.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER));
660-
} catch (IllegalArgumentException iae) {
661-
if (true) throw new Error();
662-
}
660+
} catch (IllegalArgumentException iae) { }
663661
}
664662
return (Float) ctxt.handleWeirdStringValue(_valueClass, text,
665663
"not a valid `Float` value");

0 commit comments

Comments
 (0)