Skip to content

Commit

Permalink
remove unused codes
Browse files Browse the repository at this point in the history
  • Loading branch information
yjfnypeu committed Mar 29, 2018
1 parent 35b1cc6 commit ee37d41
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ final class CallableWrapper<T> implements Callable<T> {
private String name;
private Callback callback;
private Callable<T> proxy;
private long delay;

CallableWrapper(Configs configs, Callable<T> proxy) {
this.name = configs.name;
this.delay = configs.delay;
this.proxy = proxy;
this.callback = new CallbackDelegate(configs.callback, configs.deliver, configs.asyncCallback);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ final class RunnableWrapper implements Runnable {
private CallbackDelegate delegate;
private Runnable runnable;
private Callable callable;
private long delay;

RunnableWrapper(Configs configs) {
this.name = configs.name;
this.delay = configs.delay;
this.delegate = new CallbackDelegate(configs.callback, configs.deliver, configs.asyncCallback);
}

Expand Down

0 comments on commit ee37d41

Please sign in to comment.