Remove unused method
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 15 Aug 2011 14:25:05 +0000 (14:25 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 15 Aug 2011 14:25:05 +0000 (14:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1157860 13f79535-47bb-0310-9956-ffa450edef68

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

index b2e8cd3..4e68f4e 100644 (file)
@@ -5871,24 +5871,6 @@ public class StandardContext extends ContainerBase
 
 
     /**
-     * Get app base.
-     */
-    protected String getAppBase() {
-        String appBase = null;
-        Container container = this;
-        while (container != null) {
-            if (container instanceof Host)
-                break;
-            container = container.getParent();
-        }
-        if (container != null) {
-            appBase = ((Host) container).getAppBase();
-        }
-        return appBase;
-    }
-
-
-    /**
      * Get naming context full name.
      */
     private String getNamingContextName() {