You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2013/02/09 02:00:05 UTC

svn commit: r1444305 - /tomcat/trunk/java/org/apache/catalina/storeconfig/StandardContextSF.java

Author: kkolinko
Date: Sat Feb  9 01:00:04 2013
New Revision: 1444305

URL: http://svn.apache.org/r1444305
Log:
Remove unnecessary cast

Modified:
    tomcat/trunk/java/org/apache/catalina/storeconfig/StandardContextSF.java

Modified: tomcat/trunk/java/org/apache/catalina/storeconfig/StandardContextSF.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/storeconfig/StandardContextSF.java?rev=1444305&r1=1444304&r2=1444305&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/storeconfig/StandardContextSF.java (original)
+++ tomcat/trunk/java/org/apache/catalina/storeconfig/StandardContextSF.java Sat Feb  9 01:00:04 2013
@@ -313,7 +313,7 @@ public class StandardContextSF extends S
     protected File configBase(Context context) {
 
         File file = new File(System.getProperty("catalina.base"), "conf");
-        Container host = (Host) context.getParent();
+        Container host = context.getParent();
 
         if ((host != null) && (host instanceof Host)) {
             Container engine = host.getParent();



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org