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 d53c1be commit a6b70e0Copy full SHA for a6b70e0
src/main/java/rx/functions/Action1.java
@@ -18,6 +18,6 @@
18
/**
19
* A one-argument action.
20
*/
21
-public interface Action1<T1> extends Action {
22
- void call(T1 t1);
+public interface Action1<T> extends Action {
+ void call(T t);
23
}
src/main/java/rx/functions/Func1.java
* Represents a function with one argument.
-public interface Func1<T1, R> extends Function {
- R call(T1 t1);
+public interface Func1<T, R> extends Function {
+ R call(T t);
0 commit comments