This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch javdoc-fixes
in repository https://gitbox.apache.org/repos/asf/storm.git
The following commit(s) were added to refs/heads/javdoc-fixes by this push:
new d2ebde51f Checkstyle adjustments
d2ebde51f is described below
commit d2ebde51f89b2dbabb22177e0694238c94a2be0a
Author: Richard Zowalla <[email protected]>
AuthorDate: Fri Aug 25 11:28:08 2023 +0200
Checkstyle adjustments
---
.../jvm/org/apache/storm/starter/tools/SlidingWindowCounter.java | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git
a/examples/storm-starter/src/jvm/org/apache/storm/starter/tools/SlidingWindowCounter.java
b/examples/storm-starter/src/jvm/org/apache/storm/starter/tools/SlidingWindowCounter.java
index 1199d1014..e8d0d290f 100644
---
a/examples/storm-starter/src/jvm/org/apache/storm/starter/tools/SlidingWindowCounter.java
+++
b/examples/storm-starter/src/jvm/org/apache/storm/starter/tools/SlidingWindowCounter.java
@@ -12,8 +12,6 @@
package org.apache.storm.starter.tools;
-import org.apache.storm.starter.bolt.RollingCountBolt;
-
import java.util.Map;
import java.io.Serializable;
@@ -21,9 +19,9 @@ import java.io.Serializable;
* This class counts objects in a sliding window fashion.
* <p/>
* It is designed 1) to give multiple "producer" threads write access to the
counter, i.e. being able to increment
- * counts of objects, and 2) to give a single "consumer" thread (e.g. {@link
RollingCountBolt}) read access
- * to the counter. Whenever the consumer thread performs a read operation,
this class will advance the head slot of the
- * sliding window counter. This means that the consumer thread indirectly
controls where writes of the producer threads
+ * counts of objects, and 2) to give a single "consumer" thread (e.g. {@link
org.apache.storm.starter.bolt.RollingCountBolt})
+ * read access to the counter. Whenever the consumer thread performs a read
operation, this class will advance the head slot
+ * of the sliding window counter. This means that the consumer thread
indirectly controls where writes of the producer threads
* will go to. Also, by itself this class will not advance the head slot.
* <p/>
* A note for analyzing data based on a sliding window count: During the
initial <code>windowLengthInSlots</code>