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 99077bf2 Javadoc
99077bf2 is described below

commit 99077bf22b0a4a185cb680578dd80b4b0ab7ba53
Author: Gary D. Gregory <[email protected]>
AuthorDate: Wed Aug 20 06:55:45 2025 -0400

    Javadoc
---
 src/main/java/org/apache/commons/jexl3/JexlInfo.java           |  2 +-
 src/main/java/org/apache/commons/jexl3/JexlOptions.java        |  4 ++--
 .../org/apache/commons/jexl3/internal/TemplateInterpreter.java | 10 +++++-----
 .../org/apache/commons/jexl3/introspection/JexlSandbox.java    |  6 +++---
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/main/java/org/apache/commons/jexl3/JexlInfo.java 
b/src/main/java/org/apache/commons/jexl3/JexlInfo.java
index 41d4757b..a0ba0205 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlInfo.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlInfo.java
@@ -129,7 +129,7 @@ public class JexlInfo {
 
     /**
      * Gets this instance or a copy without any decorations
-     * @return this instance or a copy without any decorations
+     * @return {@code this} instance or a copy without any decorations
      */
     public JexlInfo detach() {
         return this;
diff --git a/src/main/java/org/apache/commons/jexl3/JexlOptions.java 
b/src/main/java/org/apache/commons/jexl3/JexlOptions.java
index 2a3a1741..d054e0c9 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlOptions.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlOptions.java
@@ -330,7 +330,7 @@ public final class JexlOptions {
     /**
      * Sets options from engine.
      * @param jexl the engine
-     * @return this instance
+     * @return {@code this} instance
      */
     public JexlOptions set(final JexlEngine jexl) {
         if (jexl instanceof Engine) {
@@ -342,7 +342,7 @@ public final class JexlOptions {
     /**
      * Sets options from options.
      * @param src the options
-     * @return this instance
+     * @return {@code this} instance
      */
     public JexlOptions set(final JexlOptions src) {
         mathContext = src.mathContext;
diff --git 
a/src/main/java/org/apache/commons/jexl3/internal/TemplateInterpreter.java 
b/src/main/java/org/apache/commons/jexl3/internal/TemplateInterpreter.java
index 5cb22708..ed286651 100644
--- a/src/main/java/org/apache/commons/jexl3/internal/TemplateInterpreter.java
+++ b/src/main/java/org/apache/commons/jexl3/internal/TemplateInterpreter.java
@@ -67,7 +67,7 @@ public class TemplateInterpreter extends Interpreter {
         /**
          * Sets the context.
          * @param j the context
-         * @return this instance
+         * @return {@code this} instance
          */
         Arguments context(final JexlContext j) {
             this.jcontext = j;
@@ -76,7 +76,7 @@ public class TemplateInterpreter extends Interpreter {
         /**
          * Sets the expressions.
          * @param e the expressions
-         * @return this instance
+         * @return {@code this} instance
          */
         Arguments expressions(final TemplateExpression[] e) {
             this.expressions = e;
@@ -85,7 +85,7 @@ public class TemplateInterpreter extends Interpreter {
         /**
          * Sets the frame.
          * @param f the frame
-         * @return this instance
+         * @return {@code this} instance
          */
         Arguments frame(final Frame f) {
             this.jframe = f;
@@ -94,7 +94,7 @@ public class TemplateInterpreter extends Interpreter {
         /**
          * Sets the options.
          * @param o the options
-         * @return this instance
+         * @return {@code this} instance
          */
         Arguments options(final JexlOptions o) {
             this.options = o;
@@ -103,7 +103,7 @@ public class TemplateInterpreter extends Interpreter {
         /**
          * Sets the writer.
          * @param o the writer
-         * @return this instance
+         * @return {@code this} instance
          */
         Arguments writer(final Writer o) {
             this.out = o;
diff --git 
a/src/main/java/org/apache/commons/jexl3/introspection/JexlSandbox.java 
b/src/main/java/org/apache/commons/jexl3/introspection/JexlSandbox.java
index 90a5a8fd..f79ea0e5 100644
--- a/src/main/java/org/apache/commons/jexl3/introspection/JexlSandbox.java
+++ b/src/main/java/org/apache/commons/jexl3/introspection/JexlSandbox.java
@@ -603,7 +603,7 @@ public final class JexlSandbox {
          * <p>The constructor is denoted as the empty-string, all other 
methods by their names.</p>
          *
          * @param methodNames the method names
-         * @return this instance of permissions
+         * @return {@code this} instance of permissions
          */
         public Permissions execute(final String... methodNames) {
             for (final String methodName : methodNames) {
@@ -633,7 +633,7 @@ public final class JexlSandbox {
          * Adds a list of readable property names to these permissions.
          *
          * @param propertyNames the property names
-         * @return this instance of permissions
+         * @return {@code this} instance of permissions
          */
         public Permissions read(final String... propertyNames) {
             for (final String propertyName : propertyNames) {
@@ -655,7 +655,7 @@ public final class JexlSandbox {
          * Adds a list of writable property names to these permissions.
          *
          * @param propertyNames the property names
-         * @return this instance of permissions
+         * @return {@code this} instance of permissions
          */
         public Permissions write(final String... propertyNames) {
             for (final String propertyName : propertyNames) {

Reply via email to