diff --git a/jode/jode/bytecode/BytecodeInfo.java b/jode/jode/bytecode/BytecodeInfo.java index 556b1e8..811c5c8 100644 --- a/jode/jode/bytecode/BytecodeInfo.java +++ b/jode/jode/bytecode/BytecodeInfo.java @@ -552,7 +552,7 @@ public class BytecodeInfo extends BinaryInfo implements Opcodes { case opc_anewarray: { String type = cp.getClassType(input.readUnsignedShort()); instr.opcode = opc_multianewarray; - instr.objData = "["+type; + instr.objData = ("["+type).intern(); if ((GlobalOptions.debuggingFlags & GlobalOptions.DEBUG_BYTECODE) != 0) GlobalOptions.err.print(" "+instr.objData);