This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.jcr.davex-1.1.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-davex.git
commit 1b5bbaf9913f3df10048a2e3ef9b61d2fb8d720e Author: Justin Edelson <[email protected]> AuthorDate: Tue Nov 8 15:40:22 2011 +0000 SLING-2269 - fixing typo git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/davex@1199293 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java b/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java index e3e6ba7..29f42d6 100644 --- a/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java +++ b/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java @@ -65,13 +65,13 @@ public class SlingDavExServlet extends JcrRemotingServlet { private HttpService httpService; @Reference - private AuthenticationSupport authentiator; + private AuthenticationSupport authSupport; @Activate protected void activate(final ComponentContext ctx) throws Exception { final AuthHttpContext context = new AuthHttpContext(); - context.setAuthenticationSupport(authentiator); + context.setAuthenticationSupport(authSupport); final String alias = (String)ctx.getProperties().get("alias"); final Dictionary<String, String> initProps = new Hashtable<String, String>(); -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
