Skip to content

Commit

Permalink
Minor Javadoc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Aug 7, 2019
1 parent fb89d91 commit 0c3786f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ public interface Scheduler {
/**
* Returns a scheduler that uses the system-wide scheduling thread if available, or else returns
* {@link #disabledScheduler()} if not present. This scheduler is provided in Java 9 or above
* by using {@code CompletableFuture} {@code delayedExecutor}.
* by using {@link CompletableFuture} {@code delayedExecutor}.
*
* @return a scheduler that uses the system-wide scheduling thread if available, or else a
* disabled scheduler
*/
static @NonNull Scheduler systemScheduler() {
return SystemScheduler.isPresent() ? SystemScheduler.INSTANCE : disabledScheduler() ;
return SystemScheduler.isPresent() ? SystemScheduler.INSTANCE : disabledScheduler();
}

/**
Expand Down

0 comments on commit 0c3786f

Please sign in to comment.