This is an automated email from the ASF dual-hosted git repository. dklco pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git
commit 1e4a53ac401aedead5e85d929822347e26a0e4e8 Author: Dan Klco <[email protected]> AuthorDate: Mon Nov 18 23:02:04 2019 -0500 Fixing javadoc --- .../main/java/org/apache/sling/cms/transformer/Transformer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/transformer/src/main/java/org/apache/sling/cms/transformer/Transformer.java b/transformer/src/main/java/org/apache/sling/cms/transformer/Transformer.java index 9c5e997..a7e27ef 100644 --- a/transformer/src/main/java/org/apache/sling/cms/transformer/Transformer.java +++ b/transformer/src/main/java/org/apache/sling/cms/transformer/Transformer.java @@ -30,10 +30,10 @@ public interface Transformer { /** * Transforms the resource * - * @param resource the resource to transform - * @param commands the commands to execute - * @param format the format of the stream to return - * @param out the OutputStream to which to write the transformed file + * @param resource the resource to transform + * @param transformation the transformation to execute + * @param format the format of the stream to return + * @param out the OutputStream to which to write the transformed file * @throws IOException an exception occurs transforming the resource */ void transform(Resource resource, Transformation transformation, OutputFileFormat format, OutputStream out)
