diff options
author | aclement <aclement> | 2005-12-02 15:30:37 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-12-02 15:30:37 +0000 |
commit | 1b111328220bc522194ecc7361f282d169d781f3 (patch) | |
tree | 5846167c2eef9f802fddc56642be602f091428d5 | |
parent | 378b46a17e8411ec22eec2c31d36dfca3ea86fda (diff) | |
download | aspectj-1b111328220bc522194ecc7361f282d169d781f3.tar.gz aspectj-1b111328220bc522194ecc7361f282d169d781f3.zip |
fixing the unfixable: 117882 incremental dec @type
-rw-r--r-- | bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/Annotation.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/Annotation.java b/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/Annotation.java index 0e772e38f..ad7c63035 100644 --- a/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/Annotation.java +++ b/bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/Annotation.java @@ -88,12 +88,12 @@ public class Annotation { return typeIndex; } - public final String getTypeSignature() { + public String getTypeSignature() { ConstantUtf8 c = (ConstantUtf8)cpool.getConstant(typeIndex,Constants.CONSTANT_Utf8); return c.getBytes(); } - public final String getTypeName() { + public String getTypeName() { ConstantUtf8 c = (ConstantUtf8)cpool.getConstant(typeIndex,Constants.CONSTANT_Utf8); return Utility.signatureToString(c.getBytes()); } |