Browse Source

fixing the unfixable: 117882 incremental dec @type

tags/V1_5_0RC1
aclement 18 years ago
parent
commit
1b11132822

+ 2
- 2
bcel-builder/src/org/aspectj/apache/bcel/classfile/annotation/Annotation.java View File

@@ -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());
}

Loading…
Cancel
Save