Fix an Eclispe nag.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 3 Sep 2010 20:45:41 +0000 (20:45 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 3 Sep 2010 20:45:41 +0000 (20:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@992463 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/startup/CatalinaProperties.java

index 8bc26b7..f59f07e 100644 (file)
@@ -100,8 +100,8 @@ public class CatalinaProperties {
             try {
                 File home = new File(getCatalinaBase());
                 File conf = new File(home, "conf");
-                File properties = new File(conf, "catalina.properties");
-                is = new FileInputStream(properties);
+                File propsFile = new File(conf, "catalina.properties");
+                is = new FileInputStream(propsFile);
             } catch (Throwable t) {
                 handleThrowable(t);
             }