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 b083291c7a Fix Java 17 Javadoc warnings b083291c7a is described below commit b083291c7a10ce62aa0904324ff578100ba6aa93 Author: Mark Thomas <ma...@apache.org> AuthorDate: Tue Jun 21 11:30:57 2022 +0100 Fix Java 17 Javadoc warnings Trivial fix to trigger CI --- java/javax/el/BeanELResolver.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/java/javax/el/BeanELResolver.java b/java/javax/el/BeanELResolver.java index bf77219025..6e2d180161 100644 --- a/java/javax/el/BeanELResolver.java +++ b/java/javax/el/BeanELResolver.java @@ -33,6 +33,9 @@ import java.util.Objects; import java.util.WeakHashMap; import java.util.concurrent.ConcurrentHashMap; +/** + * Standard ELResolver for working with JavaBeans. + */ public class BeanELResolver extends ELResolver { private static final int CACHE_SIZE; @@ -59,10 +62,19 @@ public class BeanELResolver extends ELResolver { private final ConcurrentCache<String, BeanProperties> cache = new ConcurrentCache<>(CACHE_SIZE); + /** + * Creates a writable instance of the standard JavaBean resolver. + */ public BeanELResolver() { this.readOnly = false; } + /** + * Creates an instance of the standard JavaBean resolver. + * + * @param readOnly {@code true} if the created instance should be read-only + * otherwise false. + */ public BeanELResolver(boolean readOnly) { this.readOnly = readOnly; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org