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 09692b6728 Use Map interface where practical 09692b6728 is described below commit 09692b6728e4a2399848fcf3a6cd1db12098ca41 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 30e2e8063c..df7ffd99dd 100644 --- a/java/org/apache/jasper/compiler/Validator.java +++ b/java/org/apache/jasper/compiler/Validator.java @@ -1093,7 +1093,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(); @@ -1297,7 +1297,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