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 fe2a01be4 Javadoc fe2a01be4 is described below commit fe2a01be4c5221d2d5a89fa87bc9e8defaed8cf5 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Dec 14 10:25:44 2023 -0500 Javadoc --- .../org/apache/commons/collections4/map/AbstractReferenceMap.java | 4 ++-- .../java/org/apache/commons/collections4/map/PassiveExpiringMap.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/map/AbstractReferenceMap.java b/src/main/java/org/apache/commons/collections4/map/AbstractReferenceMap.java index fc4dbad10..2d6f27838 100644 --- a/src/main/java/org/apache/commons/collections4/map/AbstractReferenceMap.java +++ b/src/main/java/org/apache/commons/collections4/map/AbstractReferenceMap.java @@ -956,7 +956,7 @@ public abstract class AbstractReferenceMap<K, V> extends AbstractHashedMap<K, V> * A soft reference holder. */ static class SoftRef<T> extends SoftReference<T> { - /** the hashCode of the key (even if the reference points to a value) */ + /** The hashCode of the key (even if the reference points to a value) */ private final int hash; SoftRef(final int hash, final T r, final ReferenceQueue<? super T> q) { @@ -989,7 +989,7 @@ public abstract class AbstractReferenceMap<K, V> extends AbstractHashedMap<K, V> * A weak reference holder. */ static class WeakRef<T> extends WeakReference<T> { - /** the hashCode of the key (even if the reference points to a value) */ + /** The hashCode of the key (even if the reference points to a value) */ private final int hash; WeakRef(final int hash, final T r, final ReferenceQueue<? super T> q) { diff --git a/src/main/java/org/apache/commons/collections4/map/PassiveExpiringMap.java b/src/main/java/org/apache/commons/collections4/map/PassiveExpiringMap.java index 53fa4ab4e..7bf16736c 100644 --- a/src/main/java/org/apache/commons/collections4/map/PassiveExpiringMap.java +++ b/src/main/java/org/apache/commons/collections4/map/PassiveExpiringMap.java @@ -79,7 +79,7 @@ public class PassiveExpiringMap<K, V> /** Serialization version */ private static final long serialVersionUID = 1L; - /** the constant time-to-live value measured in milliseconds. */ + /** The constant time-to-live value measured in milliseconds. */ private final long timeToLiveMillis; /** @@ -198,7 +198,7 @@ public class PassiveExpiringMap<K, V> /** map used to manage expiration times for the actual map entries. */ private final Map<Object, Long> expirationMap = new HashMap<>(); - /** the policy used to determine time-to-live values for map entries. */ + /** The policy used to determine time-to-live values for map entries. */ private final ExpirationPolicy<K, V> expiringPolicy; /**