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:08:04 UTC

[tomcat] branch 10.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 10.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


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

commit fd14af64e393b7778271a8787c4bae355ae9a2cc
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 c59b6f0..63dd545 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