We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 732a26c commit fe8ce08Copy full SHA for fe8ce08
src/main/java/com/fasterxml/jackson/databind/deser/DeserializerCache.java
@@ -253,9 +253,8 @@ protected JsonDeserializer<Object> _createAndCacheValueDeserializer(Deserializat
253
* limitations necessary to ensure that only completely initialized ones
254
* are visible and used.
255
*/
256
+ _incompleteDeserializersLock.lock();
257
try {
- _incompleteDeserializersLock.lock();
258
-
259
// Ok, then: could it be that due to a race condition, deserializer can now be found?
260
JsonDeserializer<Object> deser = _findCachedDeserializer(type);
261
if (deser != null) {
0 commit comments