We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09c9d00 commit b51ca5fCopy full SHA for b51ca5f
src/main/java/com/felipestanzani/jtoon/JsonNormalizer.java
@@ -81,7 +81,7 @@ public static JsonNode normalize(Object value) {
81
// Try Jackson's default conversion for POJOs
82
try {
83
return MAPPER.valueToTree(value);
84
- } catch (IllegalArgumentException _) {
+ } catch (IllegalArgumentException e) {
85
// Fallback for non-serializable objects
86
return NullNode.getInstance();
87
}
0 commit comments