This commit is contained in:
Gary Gregory 2023-12-14 13:47:29 -05:00
parent fe2a01be4c
commit 98eddc3301
4 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@ public class ListIteratorWrapper<E> implements ResettableListIterator<E> {
private int currentIndex;
/** The current index of the wrapped iterator. */
private int wrappedIteratorIndex;
/** recall whether the wrapped iterator's "cursor" is in such a state as to allow remove() to be called */
/** Recall whether the wrapped iterator's "cursor" is in such a state as to allow remove() to be called */
private boolean removeState;
/**

View File

@ -97,7 +97,7 @@ public abstract class AbstractReferenceMap<K, V> extends AbstractHashedMap<K, V>
public enum ReferenceStrength {
HARD(0), SOFT(1), WEAK(2);
/** value */
/** Value */
public final int value;
/**

View File

@ -195,7 +195,7 @@ public class PassiveExpiringMap<K, V>
return TimeUnit.MILLISECONDS.convert(timeToLive, timeUnit);
}
/** map used to manage expiration times for the actual map entries. */
/** 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. */

View File

@ -36,7 +36,7 @@ import org.junit.jupiter.api.Test;
*/
public class CompositeMapTest<K, V> extends AbstractIterableMapTest<K, V> {
/** used as a flag in MapMutator tests */
/** Used as a flag in MapMutator tests */
private boolean pass;
public CompositeMapTest() {