PT #155622190: STS4 CF Manifest editor across everything

This commit is contained in:
BoykoAlex
2019-04-08 15:03:19 -04:00
parent d1d6bd9d26
commit 37764056cf
9 changed files with 68 additions and 48 deletions

View File

@@ -58,21 +58,18 @@ public abstract class STS4LanguageServerProcessStreamConnector extends ProcessSt
forwardTo(getLanguageServerLog(), console.out);
} else {
Job job = new Job("Consume LS error stream") {
new Thread("Consume LS error stream") {
@Override
protected IStatus run(IProgressMonitor monitor) {
public void run() {
try {
IOUtil.consume(getLanguageServerLog());
} catch (IOException e) {
// ignore
}
return Status.OK_STATUS;
}
};
job.setSystem(true);
job.schedule();
}.start();;
}
}
}