|
|
@ -37,7 +37,7 @@ public class TransformConstructors { |
|
|
|
StructuredBlock[] sb = new StructuredBlock[constrCount]; |
|
|
|
StructuredBlock[] sb = new StructuredBlock[constrCount]; |
|
|
|
for (int i=0; i< constrCount; ) { |
|
|
|
for (int i=0; i< constrCount; ) { |
|
|
|
FlowBlock header = cons[i].getMethodHeader(); |
|
|
|
FlowBlock header = cons[i].getMethodHeader(); |
|
|
|
if (!header.hasNoJumps()) |
|
|
|
if (header == null || !header.hasNoJumps()) |
|
|
|
return; |
|
|
|
return; |
|
|
|
sb[i] = cons[i].getMethodHeader().block; |
|
|
|
sb[i] = cons[i].getMethodHeader().block; |
|
|
|
// Decompiler.err.println("constr "+i+": "+sb[i]);
|
|
|
|
// Decompiler.err.println("constr "+i+": "+sb[i]);
|
|
|
|