diff --git a/jode/jode/bytecode/ConstantPool.java b/jode/jode/bytecode/ConstantPool.java index 90dc39e..43d1e43 100644 --- a/jode/jode/bytecode/ConstantPool.java +++ b/jode/jode/bytecode/ConstantPool.java @@ -160,7 +160,7 @@ public class ConstantPool { case ConstantPool.DOUBLE: return constants[i].toString(); case ConstantPool.STRING: - return quoted(getUTF8(indices1[i])); + return getUTF8(indices1[i]); } throw new ClassFormatException("unknown constant tag: "+tags[i]); }