This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new 260133b Remove unused code 260133b is described below commit 260133bec9442911da270ddfe39b287a6c6a8c00 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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org