Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardofl committed Apr 2, 2014
1 parent c3df987 commit 1da5784
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ class TimeoutedInvoker<T> implements Invoker<T> {
public TimeoutedInvoker(String taskName, Callable<T> task, int timeout, TimeUnit timeUnit) {
this.taskName = taskName;
this.task = task;
this.timeout = timeout;
this.timeout = timeout;
this.timeUnit = timeUnit;
}

@Override
Expand Down

0 comments on commit 1da5784

Please sign in to comment.