aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/javassist/bytecode/DeprecatedAttribute.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/javassist/bytecode/DeprecatedAttribute.java')
-rw-r--r--src/main/javassist/bytecode/DeprecatedAttribute.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/javassist/bytecode/DeprecatedAttribute.java b/src/main/javassist/bytecode/DeprecatedAttribute.java
index f55acebd..eaf39ef6 100644
--- a/src/main/javassist/bytecode/DeprecatedAttribute.java
+++ b/src/main/javassist/bytecode/DeprecatedAttribute.java
@@ -50,7 +50,8 @@ public class DeprecatedAttribute extends AttributeInfo {
* @param newCp the constant pool table used by the new copy.
* @param classnames should be null.
*/
- public AttributeInfo copy(ConstPool newCp, Map classnames) {
+ @Override
+ public AttributeInfo copy(ConstPool newCp, Map<String,String> classnames) {
return new DeprecatedAttribute(newCp);
}
}