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 625d5a3 Provide implementation of isParametersProvided
625d5a3 is described below
commit 625d5a3ae9dafed015e1a670d01c9c8c6e4c2981
Author: Mark Thomas <[email protected]>
AuthorDate: Thu Sep 9 09:53:59 2021 +0100
Provide implementation of isParametersProvided
---
java/org/apache/jasper/el/JspMethodExpression.java | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/java/org/apache/jasper/el/JspMethodExpression.java
b/java/org/apache/jasper/el/JspMethodExpression.java
index c6f9fb4..de724d5 100644
--- a/java/org/apache/jasper/el/JspMethodExpression.java
+++ b/java/org/apache/jasper/el/JspMethodExpression.java
@@ -99,6 +99,11 @@ public final class JspMethodExpression extends
MethodExpression implements
}
@Override
+ public boolean isParametersProvided() {
+ return this.target.isParametersProvided();
+ }
+
+ @Override
public boolean equals(Object obj) {
return this.target.equals(obj);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]