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 20:02:16 UTC

[sling-org-apache-sling-commons-content-processing] 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-processing.git

commit 59eee2ef1bee570896bfbc8d6967014f802806d3
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sat Jul 17 21:56:09 2021 +0200

    javadoc style
---
 .../apache/sling/commons/content/processing/ContentProcessor.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/sling/commons/content/processing/ContentProcessor.java b/src/main/java/org/apache/sling/commons/content/processing/ContentProcessor.java
index faaf991..2bc06eb 100644
--- a/src/main/java/org/apache/sling/commons/content/processing/ContentProcessor.java
+++ b/src/main/java/org/apache/sling/commons/content/processing/ContentProcessor.java
@@ -31,10 +31,10 @@ import org.osgi.annotation.versioning.ProviderType;
 public interface ContentProcessor {
 
     /**
-     * @param input      The stream from which the content is read for processing
-     * @param output     The stream into which the content is written during or after processing
-     * @param parameters The parameters for the processing operation
-     * @param report     The report to which the findings of the processing operation are added
+     * @param input      the stream from which the content is read for processing
+     * @param output     the stream into which the content is written during or after processing
+     * @param parameters the parameters for the processing operation
+     * @param report     the report to which the findings of the processing operation are added
      * @return {@link java.util.concurrent.CompletableFuture} for signaling completion
      */
     @NotNull CompletableFuture<Void> process(@NotNull final InputStream input, @NotNull final OutputStream output, @Nullable final Map<String, Object> parameters, @NotNull final Map<String, Object> report);