You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ra...@apache.org on 2021/04/23 15:13:42 UTC

[sling-org-apache-sling-scripting-spi] branch master updated: trivial: corrected JavaDoc generation

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

radu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-spi.git


The following commit(s) were added to refs/heads/master by this push:
     new 7ee66e4  trivial: corrected JavaDoc generation
7ee66e4 is described below

commit 7ee66e46da187590d3cc4789c7faa488aaca55e4
Author: Radu Cotescu <co...@adobe.com>
AuthorDate: Fri Apr 23 17:13:30 2021 +0200

    trivial: corrected JavaDoc generation
---
 .../java/org/apache/sling/scripting/spi/bundle/BundledRenderUnit.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/sling/scripting/spi/bundle/BundledRenderUnit.java b/src/main/java/org/apache/sling/scripting/spi/bundle/BundledRenderUnit.java
index 3f47e18..f935a73 100644
--- a/src/main/java/org/apache/sling/scripting/spi/bundle/BundledRenderUnit.java
+++ b/src/main/java/org/apache/sling/scripting/spi/bundle/BundledRenderUnit.java
@@ -34,7 +34,7 @@ import org.osgi.framework.BundleContext;
 /**
  * <p>
  * A {@code BundledRenderUnit} represents a pre-packaged script or precompiled script (Java class) that will be executed in order to
- * render a {@link org.apache.sling.api.SlingHttpServletRequest}.
+ * render a {@link HttpServletRequest}.
  * </p>
  * <p>
  * The {@code BundledRenderUnit} provider module is responsible for defining how a unit is executed. However, when executing the unit in the
@@ -46,7 +46,7 @@ import org.osgi.framework.BundleContext;
 public interface BundledRenderUnit {
 
     /**
-     * The variable available in the {@link javax.script.Bindings} associated to a {@link org.apache.sling.api.SlingHttpServletRequest} if
+     * The variable available in the {@link javax.script.Bindings} associated to a {@link HttpServletRequest} if
      * that request is served by a {@code BundledRenderUnit}.
      */
     String VARIABLE = BundledRenderUnit.class.getName();