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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org