This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.scripting.thymeleaf-0.0.6 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-thymeleaf.git
commit 8526ccf7f60227315cd923a498ce6c6ef6fc592e Author: Oliver Lietz <[email protected]> AuthorDate: Tue Jul 7 08:59:36 2015 +0000 take over update from org.apache.sling.scripting.core (add some javadoc) git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/scripting/thymeleaf@1689607 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/sling/scripting/core/servlet/CaptureResponseWrapper.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java b/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java index ccf5bd0..fbc31dd 100644 --- a/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java +++ b/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java @@ -47,7 +47,7 @@ public final class CaptureResponseWrapper extends HttpServletResponseWrapper { /** * Returns true if the response is binary. * - * @return + * @return true if the response is binary, false otherwise */ public boolean isBinaryResponse() { return isBinaryResponse; @@ -69,6 +69,8 @@ public final class CaptureResponseWrapper extends HttpServletResponseWrapper { /* * (non-Javadoc) * @see javax.servlet.ServletResponseWrapper#getOutputStream() + * + * @return the output stream from the response */ @Override public ServletOutputStream getOutputStream() throws IOException { @@ -82,6 +84,8 @@ public final class CaptureResponseWrapper extends HttpServletResponseWrapper { /* * (non-Javadoc) * @see javax.servlet.ServletResponseWrapper#getWriter() + * + * @return the writer */ @Override public PrintWriter getWriter() throws IOException { -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
