Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=49091
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 12 Apr 2010 09:42:07 +0000 (09:42 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 12 Apr 2010 09:42:07 +0000 (09:42 +0000)
Reduce visibility

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@933167 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/tagplugins/jstl/Util.java

index 55c1a22..be3067b 100644 (file)
@@ -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['&'] = "&amp;".toCharArray();