From: markt Date: Sun, 24 Oct 2010 13:08:54 +0000 (+0000) Subject: Allow Checkstyle's unused imports test to be used with the o.a.catalina.startup package X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=5c4c8f0ca9787baf087cca9a73a9a78b7fd7c473;p=tomcat7.0 Allow Checkstyle's unused imports test to be used with the o.a.catalina.startup package git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1026787 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/startup/Embedded.java b/java/org/apache/catalina/startup/Embedded.java index 55279d0a6..6cbd92fcd 100644 --- a/java/org/apache/catalina/startup/Embedded.java +++ b/java/org/apache/catalina/startup/Embedded.java @@ -44,7 +44,6 @@ import org.apache.catalina.core.StandardHost; import org.apache.catalina.core.StandardService; import org.apache.catalina.loader.WebappLoader; import org.apache.catalina.security.SecurityConfig; -import org.apache.catalina.util.LifecycleBase; import org.apache.catalina.util.LifecycleSupport; import org.apache.juli.logging.Log; import org.apache.juli.logging.LogFactory; @@ -798,7 +797,8 @@ public class Embedded extends StandardService { /** * Start nested components ({@link Connector}s and {@link Engine}s) and - * implement the requirements of {@link LifecycleBase#startInternal()}. + * implement the requirements of + * {@link org.apache.catalina.util.LifecycleBase#startInternal()}. * * @exception LifecycleException if this component detects a fatal error * that prevents this component from being used @@ -832,7 +832,8 @@ public class Embedded extends StandardService { /** * Stop nested components ({@link Connector}s and {@link Engine}s) and - * implement the requirements of {@link LifecycleBase#stopInternal()}. + * implement the requirements of + * {@link org.apache.catalina.util.LifecycleBase#stopInternal()}. * * @exception LifecycleException if this component detects a fatal error * that needs to be reported