From c88d753aa5be7c41334739dd116f0e38b05f64fa Mon Sep 17 00:00:00 2001 From: markt Date: Sat, 1 May 2010 15:20:31 +0000 Subject: [PATCH] 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 --- test/org/apache/catalina/tribes/demos/IntrospectionUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.11.0