You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2016/02/16 17:52:23 UTC

svn commit: r1730711 - /tomcat/trunk/java/org/apache/catalina/authenticator/jaspic/AuthConfigFactoryImpl.java

Author: markt
Date: Tue Feb 16 16:52:23 2016
New Revision: 1730711

URL: http://svn.apache.org/viewvc?rev=1730711&view=rev
Log:
Don't need to trigger auto-registration since the provider will be registered a few lines later.

Modified:
    tomcat/trunk/java/org/apache/catalina/authenticator/jaspic/AuthConfigFactoryImpl.java

Modified: tomcat/trunk/java/org/apache/catalina/authenticator/jaspic/AuthConfigFactoryImpl.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/authenticator/jaspic/AuthConfigFactoryImpl.java?rev=1730711&r1=1730710&r2=1730711&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/authenticator/jaspic/AuthConfigFactoryImpl.java (original)
+++ tomcat/trunk/java/org/apache/catalina/authenticator/jaspic/AuthConfigFactoryImpl.java Tue Feb 16 16:52:23 2016
@@ -104,7 +104,7 @@ public class AuthConfigFactoryImpl exten
         try {
             clazz = Class.forName(className);
             Constructor<?> constructor = clazz.getConstructor(Map.class, AuthConfigFactory.class);
-            provider = (AuthConfigProvider) constructor.newInstance(properties, this);
+            provider = (AuthConfigProvider) constructor.newInstance(properties, null);
         } catch (ClassNotFoundException | NoSuchMethodException | InstantiationException |
                 IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
             throw new SecurityException(e);



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org