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 c89fc6a6 Comment: Remove unnecessary Latin acronym c89fc6a6 is described below commit c89fc6a6d71c6296b5a55be260f7517e018032af Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Mar 14 10:06:16 2025 -0400 Comment: Remove unnecessary Latin acronym --- src/main/java/org/apache/commons/jexl3/JexlFeatures.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java index ca2f3e67..a687b296 100644 --- a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java +++ b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java @@ -127,7 +127,7 @@ public final class JexlFeatures { public static final int REF_CAPTURE = 24; /** * All features. - * N.B. ensure this is updated if additional features are added. + * Ensure this is updated if additional features are added. */ private static final long ALL_FEATURES = (1L << REF_CAPTURE + 1) - 1L; // MUST REMAIN PRIVATE /**