Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
HIGUCHI Yuta
2015-09-04 13:45:08 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1651e985caed4ef66b7e98c6c84b1518d7d7ac08
1651e985
1 parent
ef97932d
Add missing `executor.`
Change-Id: I397142388b27d7c66c90ce8f85c08457f872fc55
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
utils/misc/src/main/java/org/onlab/util/SharedExecutorService.java
utils/misc/src/main/java/org/onlab/util/SharedExecutorService.java
View file @
1651e98
...
...
@@ -127,7 +127,7 @@ class SharedExecutorService implements ExecutorService {
public
<
T
>
T
invokeAny
(
Collection
<?
extends
Callable
<
T
>>
tasks
,
long
timeout
,
TimeUnit
unit
)
throws
InterruptedException
,
ExecutionException
,
TimeoutException
{
return
invokeAny
(
tasks
,
timeout
,
unit
);
return
executor
.
invokeAny
(
tasks
,
timeout
,
unit
);
}
@Override
...
...
Please
register
or
login
to post a comment