summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraclement <aclement>2005-12-02 15:30:37 +0000
committeraclement <aclement>2005-12-02 15:30:37 +0000
commit1b111328220bc522194ecc7361f282d169d781f3 (patch)
tree5846167c2eef9f802fddc56642be602f091428d5
parent378b46a17e8411ec22eec2c31d36dfca3ea86fda (diff)
downloadaspectj-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.java4
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());
}