You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2010/05/01 17:20:38 UTC

svn commit: r940055 - /tomcat/trunk/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java

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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org