mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
Bug in isAlive.
This commit is contained in:
parent
522f7dd255
commit
40680e5ea9
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ public class ProcessClosure {
|
|||
|
||||
public boolean isAlive() {
|
||||
if (fProcess != null) {
|
||||
if (fOutputReader.isAlive() && fErrorReader.isAlive()) {
|
||||
if (fOutputReader.isAlive() || fErrorReader.isAlive()) {
|
||||
return true;
|
||||
} else {
|
||||
fProcess= null;
|
||||
|
|
Loading…
Add table
Reference in a new issue