From 4a5397015466fa4234b3c041e72ff66e66dad526 Mon Sep 17 00:00:00 2001 From: Till Rohrmann Date: Tue, 4 Jan 2022 16:01:25 +0100 Subject: [PATCH] [hotfix] Fix checkstyle violations in EvictingBoundedList --- .../org/apache/flink/runtime/util/EvictingBoundedList.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/util/EvictingBoundedList.java b/flink-runtime/src/main/java/org/apache/flink/runtime/util/EvictingBoundedList.java index 6c09c40362162..4e15832668279 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/util/EvictingBoundedList.java +++ b/flink-runtime/src/main/java/org/apache/flink/runtime/util/EvictingBoundedList.java @@ -50,13 +50,13 @@ public class EvictingBoundedList implements Iterable, 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; // ------------------------------------------------------------------------