Skip to content

Commit

Permalink
cleanup previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rmannibucau committed Mar 20, 2023
1 parent fe26260 commit 46dbeba
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,7 @@ private Map<Type, JsonCodec<?>> toCodecMap(final Stream<JsonCodec<?>> codecStrea
}

private JsonCodec<?> codecLookup(final Class<?> type) {
final var codec = codecs.get(type);
if (codec == null && Collection.class.isAssignableFrom(type)) {

}
return codec;
return codecs.get(type);
}

private IllegalStateException missingCodecException(final Type type) {
Expand Down

0 comments on commit 46dbeba

Please sign in to comment.