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 c92e71299c Use Map interface where practical c92e71299c is described below commit c92e71299c71c4afa0a0fdf30aecde1a897d26e9 Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Sep 15 16:53:18 2022 +0100 Use Map interface where practical --- java/org/apache/jasper/compiler/Validator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/org/apache/jasper/compiler/Validator.java b/java/org/apache/jasper/compiler/Validator.java index 94d0b2c797..fea0b38660 100644 --- a/java/org/apache/jasper/compiler/Validator.java +++ b/java/org/apache/jasper/compiler/Validator.java @@ -1109,7 +1109,7 @@ class Validator { * considered a dynamic attribute. */ private void checkXmlAttributes(Node.CustomTag n, - Node.JspAttribute[] jspAttrs, Hashtable<String, Object> tagDataAttrs) + Node.JspAttribute[] jspAttrs, Map<String, Object> tagDataAttrs) throws JasperException { TagInfo tagInfo = n.getTagInfo(); @@ -1313,7 +1313,7 @@ class Validator { */ private void checkNamedAttributes(Node.CustomTag n, Node.JspAttribute[] jspAttrs, int start, - Hashtable<String, Object> tagDataAttrs) + Map<String, Object> tagDataAttrs) throws JasperException { TagInfo tagInfo = n.getTagInfo(); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org