1
0

Remove redundant keyword

This commit is contained in:
Gary Gregory
2024-06-30 07:49:34 -04:00
parent 618ab14b4a
commit e6c48c9dae

View File

@@ -213,7 +213,7 @@ public final class WeakHashtable extends Hashtable {
// objects could test equal but have different hash codes. // objects could test equal but have different hash codes.
// We can reduce (not eliminate) the chance of this // We can reduce (not eliminate) the chance of this
// happening by comparing hash codes. // happening by comparing hash codes.
result = result && this.hashCode() == otherKey.hashCode(); result = result && hashCode() == otherKey.hashCode();
// In any case, as our c'tor does not allow null referants // In any case, as our c'tor does not allow null referants
// and Hashtable does not do equality checks between // and Hashtable does not do equality checks between
// existing keys, normal hashtable operations should never // existing keys, normal hashtable operations should never