@@ -290,7 +290,7 @@ private <T> void checkAndPost(@NonNull Class subscriptionClazz, @NonNull T event
290
290
}
291
291
292
292
/**
293
- * Similar to {@see post} but the event is saved and delivered to subscriptions of matching types when they are registered.
293
+ * Similar to {@code post} but the event is saved and delivered to subscriptions of matching types when they are registered.
294
294
* Only the last event of each type is saved and delivered.
295
295
*
296
296
* @param event the event to post and save to be delivered on registration
@@ -486,7 +486,7 @@ public SubscriptionStore(@NonNull T event, @Nullable Subscription subscription,
486
486
}
487
487
488
488
/**
489
- * Builds an instance of the {@link Bus)
489
+ * Builds an instance of the {@link Bus}
490
490
*/
491
491
public static class Builder {
492
492
private static final int DEFAULT_BACKGROUND_THREAD_POOL_SIZE = 2 ;
@@ -502,7 +502,7 @@ public static class Builder {
502
502
protected int eventCleanupCount = DEFAULT_EVENT_CLEANUP_COUNT ;
503
503
504
504
/**
505
- * Set the RxScheduler to use for {@link ThreadMode} .MAIN
505
+ * Set the RxScheduler to use for ThreadMode.MAIN
506
506
* <p>
507
507
* Default AndroidSchedulers.mainThread()
508
508
*
@@ -516,7 +516,7 @@ public Builder setMainScheduler(@NonNull Scheduler scheduler) {
516
516
}
517
517
518
518
/**
519
- * Set the RxScheduler to use for {@link ThreadMode} .CURRENT
519
+ * Set the RxScheduler to use for ThreadMode.CURRENT
520
520
* <p>
521
521
* Default Schedulers.trampoline()
522
522
*
@@ -530,7 +530,7 @@ public Builder setCurrentScheduler(@NonNull Scheduler scheduler) {
530
530
}
531
531
532
532
/**
533
- * Set the RxScheduler to use for {@link ThreadMode} .BACKGROUND
533
+ * Set the RxScheduler to use for ThreadMode.BACKGROUND
534
534
* <p>
535
535
* Default Schedulers.from(Executors.newFixedThreadPool(backgroundThreadPoolSize))
536
536
*
@@ -544,7 +544,7 @@ public Builder setBackgroundScheduler(@NonNull Scheduler scheduler) {
544
544
}
545
545
546
546
/**
547
- * Set the number of threads for {@link ThreadMode} .BACKGROUND
547
+ * Set the number of threads for ThreadMode.BACKGROUND
548
548
* Only used if the default BackgroundScheduler is used.
549
549
* <p>
550
550
* Default is {@literal 2}
0 commit comments