Author: markt Date: Wed Jun 18 19:00:58 2014 New Revision: 1603580 URL: http://svn.apache.org/r1603580 Log: Fix indentation
Modified: tomcat/trunk/java/org/apache/catalina/core/DefaultInstanceManager.java Modified: tomcat/trunk/java/org/apache/catalina/core/DefaultInstanceManager.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/DefaultInstanceManager.java?rev=1603580&r1=1603579&r2=1603580&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/core/DefaultInstanceManager.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/DefaultInstanceManager.java Wed Jun 18 19:00:58 2014 @@ -742,16 +742,15 @@ public class DefaultInstanceManager impl if (method.getName().equals(methodNameFromXml)) { if (!Introspection.isValidLifecycleCallback(method)) { throw new IllegalArgumentException( - "Invalid " + annotation.getName() + " annotation"); + "Invalid " + annotation.getName() + " annotation"); } result = method; } } else { if (method.isAnnotationPresent(annotation)) { - if (currentMethod != null || - !Introspection.isValidLifecycleCallback(method)) { + if (currentMethod != null || !Introspection.isValidLifecycleCallback(method)) { throw new IllegalArgumentException( - "Invalid " + annotation.getName() + " annotation"); + "Invalid " + annotation.getName() + " annotation"); } result = method; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org