You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by re...@apache.org on 2022/12/19 15:41:54 UTC

[jackrabbit-oak] 06/06: OAK-10044: oak-store-document JDK11 Javadoc fixes

This is an automated email from the ASF dual-hosted git repository.

reschke pushed a commit to branch OAK-10044
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git

commit 0f581781c8202a53e0e58e3f049d998b6ce7cd23
Author: Julian Reschke <ju...@gmx.de>
AuthorDate: Mon Dec 19 16:41:37 2022 +0100

    OAK-10044: oak-store-document JDK11 Javadoc fixes
---
 .../jackrabbit/oak/plugins/document/ThrottlingStatsCollector.java     | 3 ++-
 .../org/apache/jackrabbit/oak/plugins/document/util/LogSilencer.java  | 4 ++--
 .../apache/jackrabbit/oak/plugins/document/util/TriStatsConsumer.java | 3 ---
 3 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/ThrottlingStatsCollector.java b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/ThrottlingStatsCollector.java
index 421d8e38ab..10a769a91f 100644
--- a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/ThrottlingStatsCollector.java
+++ b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/ThrottlingStatsCollector.java
@@ -23,7 +23,8 @@ import java.util.List;
 
 /**
  * Stats Collector for throttling operation.
- * <p/>It's implementation are required to provide the time taken for implementing each operation while throttling is ON.
+ * <p>
+ * It's implementation are required to provide the time taken for implementing each operation while throttling is ON.
  */
 public interface ThrottlingStatsCollector {
 
diff --git a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/LogSilencer.java b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/LogSilencer.java
index bf38704ccb..d05d9e12ab 100644
--- a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/LogSilencer.java
+++ b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/LogSilencer.java
@@ -51,8 +51,8 @@ public class LogSilencer {
     /**
      * Create a new LogSilencer
      * @param silenceMillis milliseconds after which the silences herein should time out.
-     * If the value is <0 it means no timeout, if it is ==0 it is silenced only
-     * for the very same millisecond, and >0 the silence is active for that specified
+     * If the value is &lt;0 it means no timeout, if it is ==0 it is silenced only
+     * for the very same millisecond, and &gt;0 the silence is active for that specified
      * amount of time.
      * @param cacheSize the size of the cache held by the LogSilencer. The cache is
      * used to store the keys and timeout values for each of them.
diff --git a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/TriStatsConsumer.java b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/TriStatsConsumer.java
index 3421094883..ef39b2e807 100644
--- a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/TriStatsConsumer.java
+++ b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/TriStatsConsumer.java
@@ -25,9 +25,6 @@ import java.util.List;
 
 /**
  * {@link FunctionalInterface} to consume Metric Stats for create/upsert operation
- * @param <T> the type of the first argument to the consumer
- * @param <U> the type of the second argument to the consumer
- * @param <V> the type of the third argument to the consumer
  */
 public interface TriStatsConsumer {