--- apache-tomcat-5.5.20-src/jasper/src/share/org/apache/jasper/compiler/JspConfig.java 2007-02-19 18:02:34.302050100 -0800 +++ apache-tomcat-5.5.20-src/jasper/src/share/org/apache/jasper/compiler/JspConfig.java 2006-09-12 11:11:18.000000000 -0700 @@ -46,9 +46,6 @@ private Vector jspProperties = null; private ServletContext ctxt; - - // Lock to serialize initialization. - static Object initLock = new Object(); private boolean initialized = false; private String defaultIsXml = null; // unspecified @@ -196,7 +193,6 @@ private void init() throws JasperException { - synchronized(initLock) { if (!initialized) { processWebDotXml(ctxt); defaultJspProperty = new JspProperty(defaultIsXml, @@ -206,7 +202,6 @@ initialized = true; } } - } /** * Select the property group that has more restrictive url-pattern.