This is an automated email from the ASF dual-hosted git repository.
markt-asf pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 9da30e4b77 Need to mirror API of superclass method else TCK signature
test fails
9da30e4b77 is described below
commit 9da30e4b778e4d7693c80406338e080990195358
Author: Mark Thomas <[email protected]>
AuthorDate: Mon Jun 15 20:54:20 2026 +0100
Need to mirror API of superclass method else TCK signature test fails
---
java/javax/servlet/jsp/tagext/TagData.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/javax/servlet/jsp/tagext/TagData.java
b/java/javax/servlet/jsp/tagext/TagData.java
index 325401ee16..caef5ef0c0 100644
--- a/java/javax/servlet/jsp/tagext/TagData.java
+++ b/java/javax/servlet/jsp/tagext/TagData.java
@@ -137,7 +137,7 @@ public class TagData implements Cloneable {
}
@Override
- public TagData clone() {
+ protected Object clone() throws CloneNotSupportedException {
try {
TagData clone = (TagData) super.clone();
clone.attributes = new Hashtable<>(attributes);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]