Home
last modified time | relevance | path

Searched refs:_nonShared (Results 1 – 1 of 1) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DContextAttributes.java84 protected transient Map<Object,Object> _nonShared; field in ContextAttributes.Impl
94 _nonShared = null; in Impl()
99 _nonShared = nonShared; in Impl()
160 if (_nonShared != null) { in getAttribute()
161 Object ob = _nonShared.get(key); in getAttribute()
180 } else if ((_nonShared == null) || !_nonShared.containsKey(key)) { in withPerCallAttribute()
184 _nonShared.remove(key); in withPerCallAttribute()
189 if (_nonShared == null) { in withPerCallAttribute()
192 _nonShared.put(key, value); in withPerCallAttribute()