git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@90 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 719247eb04
commit a6081f9aa6
  1. 12
      jode/jode/decompiler/MethodAnalyzer.java

@ -164,13 +164,13 @@ public class MethodAnalyzer implements Analyzer {
for (int i=0; i<paramTypes.length; i++) { for (int i=0; i<paramTypes.length; i++) {
if (i>0) if (i>0)
writer.print(", "); writer.print(", ");
LocalInfo li;
if (code == null) { if (code == null) {
writer.print(classAnalyzer.getTypeString li = new LocalInfo(i+offset);
(Type.tType(paramTypes[i]))); li.setType(Type.tType(paramTypes[i]));
} else { } else
LocalInfo li = code.getParamInfo(i+offset); li = code.getParamInfo(i+offset);
writer.print(li.getType().toString()+" "+li.getName()); writer.print(li.getType().toString()+" "+li.getName());
}
} }
writer.print(")"); writer.print(")");
} }

Loading…
Cancel
Save