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-servlets-post.git
commit af8dd75f80055baa3d0ac60c0a3fe678abd02064 Author: Oliver Lietz <[email protected]> AuthorDate: Wed Dec 30 13:39:43 2020 +0100 fix javadoc --- .../java/org/apache/sling/servlets/post/impl/SlingPostServlet.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/sling/servlets/post/impl/SlingPostServlet.java b/src/main/java/org/apache/sling/servlets/post/impl/SlingPostServlet.java index 7417263..270e9f6 100644 --- a/src/main/java/org/apache/sling/servlets/post/impl/SlingPostServlet.java +++ b/src/main/java/org/apache/sling/servlets/post/impl/SlingPostServlet.java @@ -288,13 +288,13 @@ public class SlingPostServlet extends SlingAllMethodsServlet { /** * Creates an instance of a PostResponse. * @param req The request being serviced - * @return a {@link org.apache.sling.servlets.post.impl.helper.JSONResponse} if any of these conditions are true: + * @return a {@link org.apache.sling.servlets.post.JSONResponse} if any of these conditions are true: * <ul> * <li> the request has an <code>Accept</code> header of <code>application/json</code></li> * <li>the request is a JSON POST request (see SLING-1172)</li> * <li>the request has a request parameter <code>:accept=application/json</code></li> * </ul> - * or a {@link org.apache.sling.api.servlets.PostResponse} otherwise + * or a {@link org.apache.sling.servlets.post.PostResponse} otherwise */ PostResponse createPostResponse(final SlingHttpServletRequest req) { for (final PostResponseCreator creator : cachedPostResponseCreators) {
