Apply common if parts inspection

master
Roman Ivanov 6 years ago
parent 60a161f0e3
commit 4a790b1c7c
  1. 7
      src/org/jetbrains/java/decompiler/modules/decompiler/InlineSingleBlockHelper.java

@ -118,17 +118,14 @@ public class InlineSingleBlockHelper {
StatEdge edge = lst.get(0);
if (sameCatchRanges(edge)) {
if (edge.explicit) {
return true;
}
else {
if (!edge.explicit) {
for (int i = index; i < seq.getStats().size(); i++) {
if (!noExitLabels(seq.getStats().get(i), seq)) {
return false;
}
}
return true;
}
return true;
}
// FIXME: count labels properly
}

Loading…
Cancel
Save