This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/7.0.x by this push:
     new e0ffdc8  Remove unused code
e0ffdc8 is described below

commit e0ffdc8140a5b5019aab3266b2f7952c81abff91
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Oct 3 17:04:49 2019 +0100

    Remove unused code
---
 java/javax/el/BeanELResolver.java | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/java/javax/el/BeanELResolver.java 
b/java/javax/el/BeanELResolver.java
index 78cfd4c..cd1a111 100644
--- a/java/javax/el/BeanELResolver.java
+++ b/java/javax/el/BeanELResolver.java
@@ -274,10 +274,6 @@ public class BeanELResolver extends ELResolver {
             return property;
         }
 
-        public BeanProperty getBeanProperty(String name) {
-            return get(null, name);
-        }
-
         private Class<?> getType() {
             return type;
         }
@@ -309,14 +305,6 @@ public class BeanELResolver extends ELResolver {
                     (null == (this.write = Util.getMethod(this.owner, 
descriptor.getWriteMethod())));
         }
 
-        public Method getWriteMethod() {
-            return write(null);
-        }
-
-        public Method getReadMethod() {
-            return this.read(null);
-        }
-
         private Method write(ELContext ctx) {
             if (this.write == null) {
                 this.write = Util.getMethod(this.owner, 
descriptor.getWriteMethod());


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to