Remove unused attribute
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 19 May 2011 12:41:50 +0000 (12:41 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 19 May 2011 12:41:50 +0000 (12:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1124714 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/JspCompilationContext.java

index 19b865a..7558359 100644 (file)
@@ -69,7 +69,6 @@ public class JspCompilationContext {
     protected String servletJavaFileName;
     protected String javaPath;
     protected String classFileName;
-    protected String contentType;
     protected ServletWriter writer;
     protected Options options;
     protected JspServletWrapper jsw;
@@ -515,19 +514,6 @@ public class JspCompilationContext {
     }
 
     /**
-     * Get the content type of this JSP.
-     *
-     * Content type includes content type and encoding.
-     */
-    public String getContentType() {
-        return contentType;
-    }
-
-    public void setContentType(String contentType) {
-        this.contentType = contentType;
-    }
-
-    /**
      * Where is the servlet being generated?
      */
     public ServletWriter getWriter() {