SoftReference mPropsMap = null;
SoftReference ourRef = mPropsMap;
Map propsMap = ourRef == null ? null : ((Map) ourRef.get());
propsMap = new HashMap(22);
propsMap = Collections.unmodifiableMap(propsMap);
mPropsMap = new SoftReference(propsMap);
SoftReference ourRef = mPropsMap;
Map propsMap = ourRef == null ? null : ((Map) ourRef.get());
propsMap = new HashMap(22);
propsMap = Collections.unmodifiableMap(propsMap);
mPropsMap = new SoftReference(propsMap);
No comments:
Post a Comment