Remove unused methods
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 3 Jan 2010 15:58:39 +0000 (15:58 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 3 Jan 2010 15:58:39 +0000 (15:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@895428 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/compiler/TagFileProcessor.java

index 8652cbd..e62a57b 100644 (file)
@@ -352,28 +352,6 @@ class TagFileProcessor {
                     nameFromAttribute, className, declare, scope));
         }
 
-        /*
-         * Returns the vector of attributes corresponding to attribute
-         * directives.
-         */
-        public Vector<TagAttributeInfo> getAttributesVector() {
-            return attributeVector;
-        }
-
-        /*
-         * Returns the vector of variables corresponding to variable directives.
-         */
-        public Vector<TagVariableInfo> getVariablesVector() {
-            return variableVector;
-        }
-
-        /*
-         * Returns the value of the dynamic-attributes tag directive attribute.
-         */
-        public String getDynamicAttributesMapName() {
-            return dynamicAttrsMapName;
-        }
-
         public TagInfo getTagInfo() throws JasperException {
 
             if (name == null) {