This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new 0a812fa323 Javadoc improvements 0a812fa323 is described below commit 0a812fa3235220c93a325349a7ba7c2e5ea0f14c Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Jun 13 18:40:40 2022 +0100 Javadoc improvements Primarily to trigger a CI build --- java/jakarta/el/ArrayELResolver.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/java/jakarta/el/ArrayELResolver.java b/java/jakarta/el/ArrayELResolver.java index d8d4ff93e3..410c31b9ef 100644 --- a/java/jakarta/el/ArrayELResolver.java +++ b/java/jakarta/el/ArrayELResolver.java @@ -21,14 +21,26 @@ import java.lang.reflect.Array; import java.util.Iterator; import java.util.Objects; +/** + * Standard ELResolver for working with arrays. + */ public class ArrayELResolver extends ELResolver { private final boolean readOnly; + /** + * Creates a writable instance of the standard array resolver. + */ public ArrayELResolver() { this.readOnly = false; } + /** + * Creates an instance of the standard array resolver. + * + * @param readOnly {@code true} if the created instance should be read-only + * otherwise false. + */ public ArrayELResolver(boolean readOnly) { this.readOnly = readOnly; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org