git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@706 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent d086578f00
commit cb702d14fe
  1. 4
      jode/jode/flow/StructuredBlock.java

@ -598,8 +598,8 @@ public abstract class StructuredBlock {
public void dumpDeclaration(jode.decompiler.TabbedPrintWriter writer, LocalInfo local) public void dumpDeclaration(jode.decompiler.TabbedPrintWriter writer, LocalInfo local)
throws java.io.IOException throws java.io.IOException
{ {
writer.println(local.getType().getHint().toString() + " " writer.printType(local.getType().getHint());
+ local.getName().toString() + ";"); writer.print(" " + local.getName().toString() + ";");
} }
/** /**

Loading…
Cancel
Save