This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
The following commit(s) were added to refs/heads/master by this push: new cb3494e9c Javadoc: Use the semantic "code" HTML tag instead of "tt" style tag cb3494e9c is described below commit cb3494e9c7a5e3591e99b7c570ff73073453ab9d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Nov 30 08:48:45 2024 -0500 Javadoc: Use the semantic "code" HTML tag instead of "tt" style tag --- .../apache/commons/collections4/map/ConcurrentReferenceHashMap.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/map/ConcurrentReferenceHashMap.java b/src/main/java/org/apache/commons/collections4/map/ConcurrentReferenceHashMap.java index 1ab535eed..74f2f4c69 100644 --- a/src/main/java/org/apache/commons/collections4/map/ConcurrentReferenceHashMap.java +++ b/src/main/java/org/apache/commons/collections4/map/ConcurrentReferenceHashMap.java @@ -698,8 +698,8 @@ public class ConcurrentReferenceHashMap<K, V> extends AbstractMap<K, V> implemen private transient int modCount; /** - * The table is rehashed when its size exceeds this threshold. (The value of this field is always <tt>(int)(capacity * - * loadFactor)</tt>.) + * The table is rehashed when its size exceeds this threshold. (The value of this field is always <code>(int)(capacity * + * loadFactor)</code>.) */ private transient int threshold;