be more conservative in put()

This commit is contained in:
2024-07-07 11:44:55 +02:00
parent 4696d8f40a
commit 62083e693f

View File

@@ -151,7 +151,7 @@ public class JObjectManagerImpl implements JObjectManager {
m.lock(); m.lock();
} }
if (object.pushResolution() && finalRet.getData() == null) { if (object.pushResolution() && object.assumeUnique() && finalRet.getData() == null) {
finalRet.externalResolution(object); finalRet.externalResolution(object);
} }