Correct a regression in the fix for https://issues.apache.org/bugzilla/show_bug.cgi...
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 18 Apr 2011 13:41:37 +0000 (13:41 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 18 Apr 2011 13:41:37 +0000 (13:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1094569 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/servlet/JspServlet.java
webapps/docs/changelog.xml

index db0d51f..c72d114 100644 (file)
@@ -125,7 +125,6 @@ public class JspServlet extends HttpServlet implements PeriodicEventListener {
                 throw new ServletException("Can not locate jsp file", e);
             }
             try {
-                serviceJspFile(null, null, jspFile, null, true);
                 if (SecurityUtil.isPackageProtectionEnabled()){
                    AccessController.doPrivileged(new PrivilegedExceptionAction<Object>(){
                         @Override
index cffcb46..e341891 100644 (file)
         Label JSP/tag file line and column numbers when reporting errors since
         it may not be immediately obvious what the numbers represent. (markt)
       </add>
+      <fix>
+        Correct a regression in the fix for <bug>49916</bug> that resulted in
+        JSPs being compiled twice rather than just once. (markt)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Web applications">