public int hashCode()

in src/main/java/org/apache/commons/logging/impl/WeakHashtable.java [160:163]


        public int hashCode() {
            return (getKey()==null ? 0 : getKey().hashCode()) ^
                (getValue()==null ? 0 : getValue().hashCode());
        }