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 bf031a57 Javadoc tweaks bf031a57 is described below commit bf031a5728db6b4f897de9bb6d3dad8db5713e78 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jul 12 15:17:36 2023 -0400 Javadoc tweaks --- .../java/org/apache/commons/jexl3/JexlArithmetic.java | 2 +- src/main/java/org/apache/commons/jexl3/JexlEngine.java | 7 +++++-- .../java/org/apache/commons/jexl3/parser/JexlParser.java | 16 ++++++++++++---- 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java index e1653260..1cd78752 100644 --- a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java +++ b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java @@ -801,7 +801,7 @@ public class JexlArithmetic { * If null-safe (ie not-strict), the operator does accept null arguments even if the arithmetic itself is strict.</p> * <p>The default implementation considers equal/not-equal operators as null-safe so one can check for null as in * <code>if (myvar == null) {...}</code>. Note that this operator is used for equal and not-equal syntax. The complete - * list of operators that are not strict are (==, [], []=, ., .=, empty, size, contains). </p> + * list of operators that are not strict are (==, [], []=, ., .=, empty, size, contains).</p> * <p>An arithmetic refining its strict behavior handling for more operators must declare which by overriding * this method.</p> * @param operator the operator to check for null-argument(s) handling diff --git a/src/main/java/org/apache/commons/jexl3/JexlEngine.java b/src/main/java/org/apache/commons/jexl3/JexlEngine.java index 11e7c2d0..14932f8e 100644 --- a/src/main/java/org/apache/commons/jexl3/JexlEngine.java +++ b/src/main/java/org/apache/commons/jexl3/JexlEngine.java @@ -520,8 +520,11 @@ public abstract class JexlEngine { public abstract void setProperty(Object bean, String expr, Object value); /** - * Assign properties of a bean using an expression. <p> If the JEXL engine is silent, errors will be logged through - * its logger as warning. </p> + * Assign properties of a bean using an expression. + * <p> + * If the JEXL engine is silent, errors will be logged through + * its logger as warning. + * </p> * * @param context the evaluation context * @param bean the bean to set properties in diff --git a/src/main/java/org/apache/commons/jexl3/parser/JexlParser.java b/src/main/java/org/apache/commons/jexl3/parser/JexlParser.java index ba5f8504..8204d2cd 100644 --- a/src/main/java/org/apache/commons/jexl3/parser/JexlParser.java +++ b/src/main/java/org/apache/commons/jexl3/parser/JexlParser.java @@ -219,8 +219,10 @@ public abstract class JexlParser extends StringParser { /** * Gets the frame used by this parser. - * <p> Since local variables create new symbols, it is important to - * regain access after parsing to known which / how-many registers are needed. </p> + * <p> + * Since local variables create new symbols, it is important to + * regain access after parsing to known which / how-many registers are needed. + * </p> * @return the named register map */ protected Scope getScope() { @@ -438,7 +440,10 @@ public abstract class JexlParser extends StringParser { /** * Declares a local variable. - * <p> This method creates an new entry in the symbol map. </p> + * <p> + * This method creates an new entry in the symbol map. + * </p> + * * @param variable the identifier used to declare * @param lexical whether the symbol is lexical * @param constant whether the symbol is constant @@ -476,7 +481,10 @@ public abstract class JexlParser extends StringParser { /** * Declares a local parameter. - * <p> This method creates an new entry in the symbol map. </p> + * <p> + * This method creates an new entry in the symbol map. + * </p> + * * @param token the parameter name token * @param lexical whether the parameter is lexical or not * @param constant whether the parameter is constant or not