Browse Source

278496: toString modifications for expected output testing

tags/V1_6_10RC1
aclement 14 years ago
parent
commit
f492b6fc2e

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

@@ -84,12 +84,12 @@ public class EnumElementValue extends ElementValue {
return sb.toString();
}

/* public String toString() {
public String toString() {
StringBuilder s = new StringBuilder("E(");
s.append(getEnumTypeString()).append(" ").append(getEnumValueString()).append(")");
return s.toString();
}
*/
// BCELBUG: Should we need to call utility.signatureToString() on the output here?
public String getEnumTypeString() {
// Constant cc = getConstantPool().getConstant(typeIdx);

Loading…
Cancel
Save