Class ParanoidHashSet<T>

All Implemented Interfaces:
Serializable, Cloneable, Iterable<T>, Collection<T>, Set<T>

public class ParanoidHashSet<T> extends LinkedHashSet<T>
a debugging aid. This implementation complains if you stick an object in here which appears to use System.identityHashCode(), or if it detects more than BAD_HC collisions in the Set (possibly indicated a bad hash function)
See Also: