From 07c2131ac915b68a7b060ea49f65c711fce85970 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Tue, 5 Nov 2024 06:10:05 -0500 Subject: [PATCH] Use Java naming in comments, not C++ --- .../java/org/apache/commons/logging/impl/WeakHashtable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/logging/impl/WeakHashtable.java b/src/main/java/org/apache/commons/logging/impl/WeakHashtable.java index 6df1ff5..6ed7b41 100644 --- a/src/main/java/org/apache/commons/logging/impl/WeakHashtable.java +++ b/src/main/java/org/apache/commons/logging/impl/WeakHashtable.java @@ -214,7 +214,7 @@ public final class WeakHashtable extends Hashtable { // We can reduce (not eliminate) the chance of this // happening by comparing hash codes. result = result && hashCode() == otherKey.hashCode(); - // In any case, as our c'tor does not allow null referants + // In any case, as our constructor does not allow null referants // and Hashtable does not do equality checks between // existing keys, normal hash table operations should never // result in an equals comparison between null referants