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 2021/09/09 09:11:27 UTC

[tomcat] branch 9.0.x updated: Provide implementation of isParametersProvided

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

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


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 1515122  Provide implementation of isParametersProvided
1515122 is described below

commit 15151223fbcb5bc10ab6aebfd5f09e238ed26753
Author: Mark Thomas <ma...@apache.org>
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: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org