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 2013/02/16 23:35:00 UTC

svn commit: r1446970 - /tomcat/trunk/java/org/apache/jasper/Constants.java

Author: markt
Date: Sat Feb 16 22:35:00 2013
New Revision: 1446970

URL: http://svn.apache.org/r1446970
Log:
UCDetector
 - reduce visibility

Modified:
    tomcat/trunk/java/org/apache/jasper/Constants.java

Modified: tomcat/trunk/java/org/apache/jasper/Constants.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/Constants.java?rev=1446970&r1=1446969&r2=1446970&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/Constants.java (original)
+++ tomcat/trunk/java/org/apache/jasper/Constants.java Sat Feb 16 22:35:00 2013
@@ -124,26 +124,26 @@ public class Constants {
      * Public Id and the Resource path (of the cached copy)
      * of the DTDs for tag library descriptors.
      */
-    public static final String TAGLIB_DTD_PUBLIC_ID_11 =
+    private static final String TAGLIB_DTD_PUBLIC_ID_11 =
         "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN";
-    public static final String TAGLIB_DTD_RESOURCE_PATH_11 =
+    private static final String TAGLIB_DTD_RESOURCE_PATH_11 =
         "/javax/servlet/jsp/resources/web-jsptaglibrary_1_1.dtd";
-    public static final String TAGLIB_DTD_PUBLIC_ID_12 =
+    private static final String TAGLIB_DTD_PUBLIC_ID_12 =
         "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN";
-    public static final String TAGLIB_DTD_RESOURCE_PATH_12 =
+    private static final String TAGLIB_DTD_RESOURCE_PATH_12 =
         "/javax/servlet/jsp/resources/web-jsptaglibrary_1_2.dtd";
 
     /**
      * Public Id and the Resource path (of the cached copy)
      * of the DTDs for web application deployment descriptors
      */
-    public static final String WEBAPP_DTD_PUBLIC_ID_22 =
+    private static final String WEBAPP_DTD_PUBLIC_ID_22 =
         "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN";
-    public static final String WEBAPP_DTD_RESOURCE_PATH_22 =
+    private static final String WEBAPP_DTD_RESOURCE_PATH_22 =
         "/javax/servlet/resources/web-app_2_2.dtd";
-    public static final String WEBAPP_DTD_PUBLIC_ID_23 =
+    private static final String WEBAPP_DTD_PUBLIC_ID_23 =
         "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN";
-    public static final String WEBAPP_DTD_RESOURCE_PATH_23 =
+    private static final String WEBAPP_DTD_RESOURCE_PATH_23 =
         "/javax/servlet/resources/web-app_2_3.dtd";
 
     /**



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org