Skip to content

Commit

Permalink
[hotfix] Fix checkstyle violations in EvictingBoundedList
Browse files Browse the repository at this point in the history
  • Loading branch information
tillrohrmann committed Jan 27, 2022
1 parent 8078091 commit 4a53970
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ public class EvictingBoundedList<T> implements Iterable<T>, Serializable {
/** the array (viewed as a circular buffer) that holds the latest (= non-evicted) elements */
private final Object[] elements;

/** The next index to put an element in the array */
/** The next index to put an element in the array. */
private int idx;

/** The current number of (virtual) elements in the list */
/** The current number of (virtual) elements in the list. */
private int count;

/** Modification count for fail-fast iterators */
/** Modification count for fail-fast iterators. */
private long modCount;

// ------------------------------------------------------------------------
Expand Down

0 comments on commit 4a53970

Please sign in to comment.