Skip to content

Commit 98530ed

Browse files
committed
Merge pull request #3123 from jacek-rzrz/1.x
Remove redundant type parameter in EmptyAction
2 parents dd5c909 + 5cb9f41 commit 98530ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/rx/functions/Actions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ private Actions() {
2424
}
2525

2626
@SuppressWarnings("unchecked")
27-
public static final <T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> EmptyAction<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> empty() {
27+
public static final <T0, T1, T2, T3, T4, T5, T6, T7, T8> EmptyAction<T0, T1, T2, T3, T4, T5, T6, T7, T8> empty() {
2828
return EMPTY_ACTION;
2929
}
3030

3131
@SuppressWarnings("rawtypes")
3232
private static final EmptyAction EMPTY_ACTION = new EmptyAction();
3333

34-
private static final class EmptyAction<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> implements
34+
private static final class EmptyAction<T0, T1, T2, T3, T4, T5, T6, T7, T8> implements
3535
Action0,
3636
Action1<T0>,
3737
Action2<T0, T1>,

0 commit comments

Comments
 (0)