@@ -1752,15 +1752,14 @@ public final <U> Single<T> delaySubscription(Publisher<U> other) {
1752
1752
* <dd>{@code delaySubscription} does by default subscribe to the current Single
1753
1753
* on the {@code computation} {@link Scheduler} after the delay.</dd>
1754
1754
* </dl>
1755
- * @param <U> the element type of the other source
1756
1755
* @param time the time amount to wait with the subscription
1757
1756
* @param unit the time unit of the waiting
1758
1757
* @return the new Single instance
1759
1758
* @since 2.0
1760
1759
*/
1761
1760
@ CheckReturnValue
1762
1761
@ SchedulerSupport (SchedulerSupport .COMPUTATION )
1763
- public final < U > Single <T > delaySubscription (long time , TimeUnit unit ) {
1762
+ public final Single <T > delaySubscription (long time , TimeUnit unit ) {
1764
1763
return delaySubscription (time , unit , Schedulers .computation ());
1765
1764
}
1766
1765
@@ -1771,7 +1770,6 @@ public final <U> Single<T> delaySubscription(long time, TimeUnit unit) {
1771
1770
* <dd>{@code delaySubscription} does by default subscribe to the current Single
1772
1771
* on the {@link Scheduler} you provided, after the delay.</dd>
1773
1772
* </dl>
1774
- * @param <U> the element type of the other source
1775
1773
* @param time the time amount to wait with the subscription
1776
1774
* @param unit the time unit of the waiting
1777
1775
* @param scheduler the scheduler to wait on and subscribe on to the current Single
@@ -1780,7 +1778,7 @@ public final <U> Single<T> delaySubscription(long time, TimeUnit unit) {
1780
1778
*/
1781
1779
@ CheckReturnValue
1782
1780
@ SchedulerSupport (SchedulerSupport .CUSTOM )
1783
- public final < U > Single <T > delaySubscription (long time , TimeUnit unit , Scheduler scheduler ) {
1781
+ public final Single <T > delaySubscription (long time , TimeUnit unit , Scheduler scheduler ) {
1784
1782
return delaySubscription (Observable .timer (time , unit , scheduler ));
1785
1783
}
1786
1784
0 commit comments