Hi,
I understand referenceMap from the alpha version of Google Collections has been replaced by MapMaker.
I used this ReferenceMap constructor with the backing map:
public ReferenceMap(ReferenceType keyReferenceType, ReferenceType valueReferenceType, ConcurrentMap backingMap) { this(keyReferenceType, valueReferenceType, backingMap, true); }
My backing map is a concurrentmap with the ability to collect statistics (hit/miss etc).
What can I use in place of the above ReferenceMap constructor?
Thanks, Grace