Revert 680710 - no interst in porting this to 6.0.x
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 24 Oct 2008 20:33:31 +0000 (20:33 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 24 Oct 2008 20:33:31 +0000 (20:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@707736 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/core/LocalStrings.properties
java/org/apache/catalina/core/StandardContext.java

index a9c5da6..28f4eca 100644 (file)
@@ -66,7 +66,6 @@ naming.namingContextCreationFailed=Creation of the naming context failed: {0}
 standardContext.invalidWrapperClass={0} is not a subclass of StandardWrapper
 standardContext.alreadyStarted=Context has already been started
 standardContext.applicationListener=Error configuring application listener of class {0}
-standardContext.applicationListenerIAE=Error configuring application listener of class {0}. One possible cause is a lack of a public zero argument constructor.
 standardContext.applicationSkipped=Skipped installing application listeners due to previous error(s)
 standardContext.badRequest=Invalid request path ({0}).
 standardContext.crlfinurl=The URL pattern "{0}" contains a CR or LF and so can never be matched.
index 514eb92..b640d55 100644 (file)
@@ -3810,11 +3810,6 @@ public class StandardContext
                     listeners[i] + "'");
             try {
                 results[i] = instanceManager.newInstance(listeners[i]);
-            } catch (IllegalAccessException iae) {
-                getLogger().error
-                (sm.getString("standardContext.applicationListenerIAE",
-                              listeners[i]), iae);
-            ok = false;
             } catch (Throwable t) {
                 getLogger().error
                     (sm.getString("standardContext.applicationListener",