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 9b9258e8 Fix Javadoc warning
9b9258e8 is described below
commit 9b9258e8260810b90c74cc38d1991d3bcfb66d85
Author: Gary Gregory <[email protected]>
AuthorDate: Tue May 21 13:48:10 2024 -0400
Fix Javadoc warning
---
.../java/org/apache/commons/jexl3/introspection/JexlPermissions.java | 5 +++++
1 file changed, 5 insertions(+)
diff --git
a/src/main/java/org/apache/commons/jexl3/introspection/JexlPermissions.java
b/src/main/java/org/apache/commons/jexl3/introspection/JexlPermissions.java
index 71eeb5d5..09fc5265 100644
--- a/src/main/java/org/apache/commons/jexl3/introspection/JexlPermissions.java
+++ b/src/main/java/org/apache/commons/jexl3/introspection/JexlPermissions.java
@@ -328,6 +328,11 @@ public interface JexlPermissions {
/** The permissions we delegate to. */
protected final JexlPermissions base;
+ /**
+ * Constructs a new instance.
+ *
+ * @param delegate the delegate.
+ */
protected Delegate(final JexlPermissions delegate) {
base = delegate;
}