Javadoc
This commit is contained in:
parent
fe2a01be4c
commit
98eddc3301
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue