Skip to content

Commit

Permalink
Minor fix to MapEntrySerialzier
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Mar 18, 2018
1 parent bfb2f99 commit 1074386
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public boolean isEmpty(SerializerProvider prov, Entry<?, ?> entry)
// Let's not worry about generic types here, actually;
// unlikely to make any difference, but does add significant overhead
Class<?> cc = value.getClass();
valueSer = _dynamicValueSerializers.serializerFor(cc.getClass());
valueSer = _dynamicValueSerializers.serializerFor(cc);
if (valueSer == null) {
try {
valueSer = _findAndAddDynamic(_dynamicValueSerializers, cc, prov);
Expand Down

0 comments on commit 1074386

Please sign in to comment.