Add missing `executor.`
Change-Id: I397142388b27d7c66c90ce8f85c08457f872fc55
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -127,7 +127,7 @@ class SharedExecutorService implements ExecutorService { | ... | @@ -127,7 +127,7 @@ class SharedExecutorService implements ExecutorService { |
| 127 | public <T> T invokeAny(Collection<? extends Callable<T>> tasks, | 127 | public <T> T invokeAny(Collection<? extends Callable<T>> tasks, |
| 128 | long timeout, TimeUnit unit) | 128 | long timeout, TimeUnit unit) |
| 129 | throws InterruptedException, ExecutionException, TimeoutException { | 129 | throws InterruptedException, ExecutionException, TimeoutException { |
| 130 | - return invokeAny(tasks, timeout, unit); | 130 | + return executor.invokeAny(tasks, timeout, unit); |
| 131 | } | 131 | } |
| 132 | 132 | ||
| 133 | @Override | 133 | @Override | ... | ... |
-
Please register or login to post a comment