This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jelly.git
commit 3b2f1101183211f0ab9fd96c4f704fd207f35ce0 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 13 12:46:08 2025 -0400 Remove redundant keywords --- .../java/org/apache/commons/jelly/expression/Expression.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/src/main/java/org/apache/commons/jelly/expression/Expression.java b/core/src/main/java/org/apache/commons/jelly/expression/Expression.java index 1bd7a2d2..73ad2c38 100644 --- a/core/src/main/java/org/apache/commons/jelly/expression/Expression.java +++ b/core/src/main/java/org/apache/commons/jelly/expression/Expression.java @@ -29,25 +29,25 @@ public interface Expression { * Evaluates the expression with the given context * and returns the result */ - public Object evaluate(JellyContext context); + Object evaluate(JellyContext context); /** * Evaluates the expression with the given context * coercing the result to be a boolean. */ - public boolean evaluateAsBoolean(JellyContext context); + boolean evaluateAsBoolean(JellyContext context); /** * Evaluates the expression with the given context * coercing the result to be an Iterator. */ - public Iterator evaluateAsIterator(JellyContext context); + Iterator evaluateAsIterator(JellyContext context); /** * Evaluates the expression with the given context * coercing the result to be a String. */ - public String evaluateAsString(JellyContext context); + String evaluateAsString(JellyContext context); /** * This method evaluates the expression until a value (a non-Expression) object @@ -65,10 +65,10 @@ public interface Expression { * So using this method, nested expressions can be evaluated to the * actual underlying value object. */ - public Object evaluateRecurse(JellyContext context); + Object evaluateRecurse(JellyContext context); /** * @return the textual representation of this expression */ - public String getExpressionText(); + String getExpressionText(); }