From 1b111328220bc522194ecc7361f282d169d781f3 Mon Sep 17 00:00:00 2001 From: aclement Date: Fri, 2 Dec 2005 15:30:37 +0000 Subject: [PATCH] fixing the unfixable: 117882 incremental dec @type --- .../aspectj/apache/bcel/classfile/annotation/Annotation.java | 4 ++-- 1 file 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()); } -- 2.39.5