You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2021/07/17 19:45:30 UTC

[sling-org-apache-sling-commons-content-analyzing] 05/09: javadoc style

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

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-content-analyzing.git

commit 706e99a6c26fad921a0fd21c6ebbdb927cdbf632
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sat Jul 17 21:31:12 2021 +0200

    javadoc style
---
 .../org/apache/sling/commons/content/analyzing/ContentAnalyzer.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/sling/commons/content/analyzing/ContentAnalyzer.java b/src/main/java/org/apache/sling/commons/content/analyzing/ContentAnalyzer.java
index b29387a..4021fea 100644
--- a/src/main/java/org/apache/sling/commons/content/analyzing/ContentAnalyzer.java
+++ b/src/main/java/org/apache/sling/commons/content/analyzing/ContentAnalyzer.java
@@ -30,9 +30,9 @@ import org.osgi.annotation.versioning.ProviderType;
 public interface ContentAnalyzer {
 
     /**
-     * @param input      The stream from which the content is read for analyzing
-     * @param parameters The parameters for the analyzing operation
-     * @param report     The report to which the findings of the analyzing operation are added
+     * @param input      the stream from which the content is read for analyzing
+     * @param parameters the parameters for the analyzing operation
+     * @param report     the report to which the findings of the analyzing operation are added
      * @return {@link java.util.concurrent.CompletableFuture} for signaling completion
      */
     @NotNull CompletableFuture<Void> analyze(@NotNull final InputStream input, @Nullable final Map<String, Object> parameters, @NotNull final Map<String, Object> report);