Merge pull request #616 from mookkiah/issue_587_async-method-invocation

#587 SonarQube reports bugs - async-method-invocation
This commit is contained in:
Ilkka Seppälä 2017-08-18 22:24:43 +03:00 committed by GitHub
commit f47dc1eb7c

View File

@ -139,7 +139,7 @@ public class ThreadAsyncExecutor implements AsyncExecutor {
@Override
public void await() throws InterruptedException {
synchronized (lock) {
if (!isCompleted()) {
while (!isCompleted()) {
lock.wait();
}
}