Skip to content

Commit

Permalink
Merge pull request #167 from cshijiel/master
Browse files Browse the repository at this point in the history
add missing @OverRide
  • Loading branch information
oldratlee authored Mar 11, 2020
2 parents 41b936a + 5610080 commit 2a7667a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public interface DisableInheritableForkJoinWorkerThreadFactory extends ForkJoinW
/**
* Unwrap {@link DisableInheritableThreadFactory} to the original/underneath one.
*/
@Override
@NonNull
ForkJoinWorkerThreadFactory unwrap();
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public interface DisableInheritableThreadFactory extends ThreadFactory, TtlWrapp
/**
* Unwrap {@link DisableInheritableThreadFactory} to the original/underneath one.
*/
@Override
@NonNull
ThreadFactory unwrap();
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public void execute(@NonNull Runnable command) {
executor.execute(TtlRunnable.get(command));
}

@Override
@NonNull
public Executor unwrap() {
return executor;
Expand Down

0 comments on commit 2a7667a

Please sign in to comment.