From: markt Date: Sat, 1 May 2010 15:20:31 +0000 (+0000) Subject: Another fix for https://issues.apache.org/bugzilla/show_bug.cgi?id=49092 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c88d753aa5be7c41334739dd116f0e38b05f64fa;p=tomcat7.0 Another fix for https://issues.apache.org/bugzilla/show_bug.cgi?id=49092 Make constant final git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@940055 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java b/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java index 8b82bb840..78e024488 100644 --- a/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java +++ b/test/org/apache/catalina/tribes/demos/IntrospectionUtils.java @@ -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