Apply common if parts inspection
This commit is contained in:
@@ -118,17 +118,14 @@ public class InlineSingleBlockHelper {
|
|||||||
StatEdge edge = lst.get(0);
|
StatEdge edge = lst.get(0);
|
||||||
|
|
||||||
if (sameCatchRanges(edge)) {
|
if (sameCatchRanges(edge)) {
|
||||||
if (edge.explicit) {
|
if (!edge.explicit) {
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
for (int i = index; i < seq.getStats().size(); i++) {
|
for (int i = index; i < seq.getStats().size(); i++) {
|
||||||
if (!noExitLabels(seq.getStats().get(i), seq)) {
|
if (!noExitLabels(seq.getStats().get(i), seq)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
// FIXME: count labels properly
|
// FIXME: count labels properly
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user