This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new 28ccc78786 Javadoc improvements 28ccc78786 is described below commit 28ccc787860682a1f24361ac1c6c825351c105f0 Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Jun 13 18:40:40 2022 +0100 Javadoc improvements Primarily to trigger a CI build --- java/javax/el/ArrayELResolver.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/java/javax/el/ArrayELResolver.java b/java/javax/el/ArrayELResolver.java index c143a6d94c..1bbbbf7961 100644 --- a/java/javax/el/ArrayELResolver.java +++ b/java/javax/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