From c6600bb1d6ff6538bb7c1d47ee1bb987ef18ba9f Mon Sep 17 00:00:00 2001 From: jochen Date: Fri, 12 Mar 1999 10:22:00 +0000 Subject: [PATCH] oops git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@390 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/bytecode/ConstantPool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]); }