HIGUCHI Yuta

Add missing `executor.`

Change-Id: I397142388b27d7c66c90ce8f85c08457f872fc55
...@@ -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
......