Try..finally supported by CF-builder

This commit is contained in:
Andrey Breslav
2011-04-14 15:45:39 +04:00
parent bd73ef4bd9
commit 6e9e22df16
9 changed files with 666 additions and 34 deletions
@@ -68,11 +68,14 @@ public class JetControlFlowTest extends JetTestCaseBase {
try {
processCFData(name, data);
}
catch (IOException e) {
throw new RuntimeException(e);
}
finally {
if ("true".equals(System.getProperty("jet.control.flow.test.dump.graphs"))) {
dumpDot(name, data.values());
}
} catch (IOException e) {
throw new RuntimeException(e);
}
}