Skip to content

Commit

Permalink
Merge pull request #704 from flozano/fix/703
Browse files Browse the repository at this point in the history
Proposed fix for issue #703
  • Loading branch information
cowtowncoder committed Feb 13, 2015
2 parents 7fee92e + 54e23a9 commit 7cf964a
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1088,16 +1088,16 @@ protected JsonSerializer<Object> _findExplicitUntypedSerializer(Class<?> runtime
ser = _serializerCache.untypedValueSerializer(runtimeType);
if (ser == null) {
ser = _createAndCacheUntypedSerializer(runtimeType);
/* 18-Sep-2014, tatu: This is unfortunate patch over related change
* that pushes creation of "unknown type" serializer deeper down
* in BeanSerializerFactory; as a result, we need to "undo" creation
* here.
*/
if (isUnknownTypeSerializer(ser)) {
return null;
}
}
}
/* 18-Sep-2014, tatu: This is unfortunate patch over related change
* that pushes creation of "unknown type" serializer deeper down
* in BeanSerializerFactory; as a result, we need to "undo" creation
* here.
*/
if (isUnknownTypeSerializer(ser)) {
return null;
}
return ser;
}

Expand Down

0 comments on commit 7cf964a

Please sign in to comment.