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
commit 61c0f89c84eb6efc4751a2a162a4b4f87821d3c8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 2 09:43:52 2024 -0400 Better parameter name --- .../java/org/apache/commons/jexl3/internal/TemplateEngine.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/internal/TemplateEngine.java b/src/main/java/org/apache/commons/jexl3/internal/TemplateEngine.java index 94a34999..07806b33 100644 --- a/src/main/java/org/apache/commons/jexl3/internal/TemplateEngine.java +++ b/src/main/java/org/apache/commons/jexl3/internal/TemplateEngine.java @@ -832,20 +832,20 @@ public final class TemplateEngine extends JxltEngine { /** * Creates a new instance of {@link JxltEngine} creating a local cache. - * @param aJexl the JexlEngine to use. + * @param jexl the JexlEngine to use. * @param noScript whether this engine only allows JEXL expressions or scripts * @param cacheSize the number of expressions in this cache, default is 256 * @param immediate the immediate template expression character, default is '$' * @param deferred the deferred template expression character, default is '#' */ - public TemplateEngine(final Engine aJexl, + public TemplateEngine(final Engine jexl, final boolean noScript, final int cacheSize, final char immediate, final char deferred) { - this.jexl = aJexl; - this.logger = aJexl.logger; - this.cache = (JexlCache<String, TemplateExpression>) aJexl.cacheFactory.apply(cacheSize); + this.jexl = jexl; + this.logger = jexl.logger; + this.cache = (JexlCache<String, TemplateExpression>) jexl.cacheFactory.apply(cacheSize); immediateChar = immediate; deferredChar = deferred; noscript = noScript;