diff --git a/jode/jode/decompiler/LocalVariableTable.java b/jode/jode/decompiler/LocalVariableTable.java index 91986bd..ed9503b 100644 --- a/jode/jode/decompiler/LocalVariableTable.java +++ b/jode/jode/decompiler/LocalVariableTable.java @@ -59,7 +59,7 @@ public class LocalVariableTable { int slot = stream.readUnsignedShort(); locals[slot].addLocal(start, end-start, name, type); if (Decompiler.showLVT) - Decompiler.err.println(name + ": " + type + Decompiler.err.println("\t"+name + ": " + type +" range "+start+" - "+end +" slot "+slot); }