Author: markt
Date: Sat May  1 15:20:31 2010
New Revision: 940055

URL: http://svn.apache.org/viewvc?rev=940055&view=rev
Log:
Another fix for https://issues.apache.org/bugzilla/show_bug.cgi?id=49092
Make constant final

Modified:
    tomcat/trunk/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java

Modified: 
tomcat/trunk/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java?rev=940055&r1=940054&r2=940055&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java 
(original)
+++ tomcat/trunk/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java 
Sat May  1 15:20:31 2010
@@ -231,7 +231,8 @@ public final class IntrospectionUtils {
         }
     }
 
-    public static String PATH_SEPARATOR = System.getProperty("path.separator");
+    public static final String PATH_SEPARATOR =
+        System.getProperty("path.separator");
 
     /**
      * Adds classpath entries from a vector of URL's to the "tc_path_add" 
System



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

Reply via email to