You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2019/10/03 16:05:04 UTC

[tomcat] branch master updated: Remove unused code

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 05a85a7  Remove unused code
05a85a7 is described below

commit 05a85a79dccb24fb2b34cafdc8a554c72b431cf7
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 e4fa72a..c69798f 100644
--- a/java/javax/el/BeanELResolver.java
+++ b/java/javax/el/BeanELResolver.java
@@ -263,10 +263,6 @@ public class BeanELResolver extends ELResolver {
             return property;
         }
 
-        public BeanProperty getBeanProperty(String name) {
-            return get(null, name);
-        }
-
         private Class<?> getType() {
             return type;
         }
@@ -298,14 +294,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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org