Skip to content

Commit

Permalink
Remove redundant final modifier from static method in Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-zinnatullin committed Aug 12, 2015
1 parent 054ba58 commit 6e8651e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/rx/functions/Actions.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ private Actions() {
}

@SuppressWarnings("unchecked")
public static final <T0, T1, T2, T3, T4, T5, T6, T7, T8> EmptyAction<T0, T1, T2, T3, T4, T5, T6, T7, T8> empty() {
public static <T0, T1, T2, T3, T4, T5, T6, T7, T8> EmptyAction<T0, T1, T2, T3, T4, T5, T6, T7, T8> empty() {
return EMPTY_ACTION;
}

Expand Down

0 comments on commit 6e8651e

Please sign in to comment.