|
|
@ -113,8 +113,9 @@ public class CatchBlock extends StructuredBlock { |
|
|
|
public void dumpInstruction(jode.decompiler.TabbedPrintWriter writer) |
|
|
|
public void dumpInstruction(jode.decompiler.TabbedPrintWriter writer) |
|
|
|
throws java.io.IOException { |
|
|
|
throws java.io.IOException { |
|
|
|
writer.closeBraceContinue(); |
|
|
|
writer.closeBraceContinue(); |
|
|
|
writer.print("catch ("+exceptionType.toString() + " " |
|
|
|
writer.print("catch ("); |
|
|
|
+ exceptionLocal.getName().toString()+ ")"); |
|
|
|
writer.printType(exceptionType); |
|
|
|
|
|
|
|
writer.print(" " + exceptionLocal.getName() + ")"); |
|
|
|
writer.openBrace(); |
|
|
|
writer.openBrace(); |
|
|
|
writer.tab(); |
|
|
|
writer.tab(); |
|
|
|
catchBlock.dumpSource(writer); |
|
|
|
catchBlock.dumpSource(writer); |
|
|
|