blob: 1b2b12d68851fc15a84d262e65ee1319a85c4b63 [file] [log] [blame]
class Test {
void method(){
<selection>try {
process.waitFor();
}
catch(InterruptedException e) {
process.destroy();
}
finally {
try {
myParsingThread.join();
}
catch(InterruptedException e) {
}
compilerHandler.processTerminated();
}
synchronized (this) {
myParsingThread = null;
}</selection>
someOtherCode();
}
}