Skip to content

Commit b51ca5f

Browse files
Fix release issue
1 parent 09c9d00 commit b51ca5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/felipestanzani/jtoon/JsonNormalizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public static JsonNode normalize(Object value) {
8181
// Try Jackson's default conversion for POJOs
8282
try {
8383
return MAPPER.valueToTree(value);
84-
} catch (IllegalArgumentException _) {
84+
} catch (IllegalArgumentException e) {
8585
// Fallback for non-serializable objects
8686
return NullNode.getInstance();
8787
}

0 commit comments

Comments
 (0)