We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74504f commit 4227a59Copy full SHA for 4227a59
src/main/java/io/reactivex/Observable.java
@@ -12337,7 +12337,7 @@ public final Observable<Timed<T>> timeInterval(Scheduler scheduler) {
12337
* @see <a href="http://reactivex.io/documentation/operators/timeinterval.html">ReactiveX operators documentation: TimeInterval</a>
12338
*/
12339
@CheckReturnValue
12340
- @SchedulerSupport(SchedulerSupport.NONE) // Trampoline scheduler is only used for creating timestamps.
+ @SchedulerSupport(SchedulerSupport.NONE)
12341
public final Observable<Timed<T>> timeInterval(TimeUnit unit) {
12342
return timeInterval(unit, Schedulers.computation());
12343
}
0 commit comments