Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 14, 2023
1 parent fe2a01b commit 98eddc3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ private static long validateAndConvertToMillis(final long timeToLive,
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. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/
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() {
Expand Down

0 comments on commit 98eddc3

Please sign in to comment.