Skip to content

Commit

Permalink
Unsupported method is never called, change to return null.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdereg committed Feb 3, 2024
1 parent 1f2b35f commit 5d46e15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1144,6 +1144,6 @@ private static <T> T identity(T from, Converter converter, ConverterOptions opti
}

private static <T> T unsupported(T from, Converter converter, ConverterOptions options) {
return (T) UNSUPPORTED;
return null;
}
}

0 comments on commit 5d46e15

Please sign in to comment.