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 2c2cd483a8a001709fde4a64d01227483f349a04 Author: Gary Gregory <[email protected]> AuthorDate: Fri Nov 7 16:07:50 2025 -0500 Fix Javadoc since tag --- .../java/org/apache/commons/jexl3/introspection/JexlUberspect.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/introspection/JexlUberspect.java b/src/main/java/org/apache/commons/jexl3/introspection/JexlUberspect.java index 6895db73..c5be7a42 100644 --- a/src/main/java/org/apache/commons/jexl3/introspection/JexlUberspect.java +++ b/src/main/java/org/apache/commons/jexl3/introspection/JexlUberspect.java @@ -80,7 +80,7 @@ public interface JexlUberspect { /** * A marker interface that solves a simple class name into a fully qualified one. * <p>The base implementation uses imports.</p> - * @since 3.6 + * @since 3.6.0 */ interface ClassNameResolver { /** @@ -94,7 +94,7 @@ public interface JexlUberspect { /** * A marker interface that solves a class constant by name. * <p>The base implementation uses imports to solve enums and public static final fields.</p> - * @since 3.6 + * @since 3.6.0 */ interface ClassConstantResolver extends ClassNameResolver { /** @@ -107,7 +107,7 @@ public interface JexlUberspect { /** * The factory type for creating constant resolvers. - * @since 3.6 + * @since 3.6.0 */ interface ConstantResolverFactory { /**
