Remove unused code. Made unnecessary by r618481
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 19 May 2011 12:36:06 +0000 (12:36 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 19 May 2011 12:36:06 +0000 (12:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1124711 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/JspCompilationContext.java

index 19a6116..19b865a 100644 (file)
@@ -60,7 +60,6 @@ public class JspCompilationContext {
     private final Log log = LogFactory.getLog(JspCompilationContext.class); // must not be static
 
     protected Map<String, JarResource> tagFileJarUrls;
-    protected boolean isPackagedTagFile;
 
     protected String className;
     protected String jspUri;
@@ -138,9 +137,6 @@ public class JspCompilationContext {
         this.isTagFile = true;
         this.tagInfo = tagInfo;
         this.tagJarResource = tagJarResource;
-        if (tagJarResource != null) {
-            isPackagedTagFile = true;
-        }
     }
 
     /* ==================== Methods to override ==================== */