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-jexl.git
The following commit(s) were added to refs/heads/master by this push: new 1b2242b0 Normalize parameter names 1b2242b0 is described below commit 1b2242b040c471fb687ad87600562f1c647e4cff Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun May 4 14:02:11 2025 -0400 Normalize parameter names --- src/test/java/org/apache/commons/jexl3/Issues300Test.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/java/org/apache/commons/jexl3/Issues300Test.java b/src/test/java/org/apache/commons/jexl3/Issues300Test.java index 2d4f9aad..531562cd 100644 --- a/src/test/java/org/apache/commons/jexl3/Issues300Test.java +++ b/src/test/java/org/apache/commons/jexl3/Issues300Test.java @@ -173,12 +173,12 @@ public class Issues300Test { return nested; } - public void setName(final String pName) { - this.name = pName; + public void setName(final String name) { + this.name = name; } - public void setNested(final TestObject374 pNested) { - nested = pNested; + public void setNested(final TestObject374 nested) { + this.nested = nested; } }