From: markt Date: Mon, 12 Apr 2010 09:42:07 +0000 (+0000) Subject: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=49091 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=14275c0253efc143213959d34ba3e9eb18f94ca8;p=tomcat7.0 Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=49091 Reduce visibility git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@933167 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/jasper/tagplugins/jstl/Util.java b/java/org/apache/jasper/tagplugins/jstl/Util.java index 55c1a2201..be3067bc9 100644 --- a/java/org/apache/jasper/tagplugins/jstl/Util.java +++ b/java/org/apache/jasper/tagplugins/jstl/Util.java @@ -50,7 +50,7 @@ public class Util { public static final int HIGHEST_SPECIAL = '>'; - public static char[][] specialCharactersRepresentation = new char[HIGHEST_SPECIAL + 1][]; + private static char[][] specialCharactersRepresentation = new char[HIGHEST_SPECIAL + 1][]; static { specialCharactersRepresentation['&'] = "&".toCharArray();