Skip to content

Commit 4227a59

Browse files
zhukicakarnokd
authored andcommitted
remove unnecessary comment from Observable.timeInterval(TimeUnit) (ReactiveX#5858)
1 parent f74504f commit 4227a59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/reactivex/Observable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12337,7 +12337,7 @@ public final Observable<Timed<T>> timeInterval(Scheduler scheduler) {
1233712337
* @see <a href="http://reactivex.io/documentation/operators/timeinterval.html">ReactiveX operators documentation: TimeInterval</a>
1233812338
*/
1233912339
@CheckReturnValue
12340-
@SchedulerSupport(SchedulerSupport.NONE) // Trampoline scheduler is only used for creating timestamps.
12340+
@SchedulerSupport(SchedulerSupport.NONE)
1234112341
public final Observable<Timed<T>> timeInterval(TimeUnit unit) {
1234212342
return timeInterval(unit, Schedulers.computation());
1234312343
}

0 commit comments

Comments
 (0)