Skip to content

Commit c65c183

Browse files
committed
Changed name of type parameter for Try0-3
1 parent f17b113 commit c65c183

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

core/src/main/java/fj/function/Try0.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
* @version %build.number%
1010
*/
1111

12-
public interface Try0<A, E extends Exception> {
12+
public interface Try0<A, Z extends Exception> {
1313

14-
A f() throws E;
14+
A f() throws Z;
1515

1616
}

core/src/main/java/fj/function/Try1.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
* @version %build.number%
1010
*/
1111

12-
public interface Try1<A, B, E extends Exception> {
12+
public interface Try1<A, B, Z extends Exception> {
1313

14-
B f(A a) throws E;
14+
B f(A a) throws Z;
1515

1616
}

core/src/main/java/fj/function/Try2.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
* @version %build.number%
1010
*/
1111

12-
public interface Try2<A, B, C, E extends Exception> {
12+
public interface Try2<A, B, C, Z extends Exception> {
1313

14-
C f(A a, B b) throws E;
14+
C f(A a, B b) throws Z;
1515

1616
}

core/src/main/java/fj/function/Try3.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
* @version %build.number%
1010
*/
1111

12-
public interface Try3<A, B, C, D, E extends Exception> {
12+
public interface Try3<A, B, C, D, Z extends Exception> {
1313

14-
D f(A a, B b, C c) throws E;
14+
D f(A a, B b, C c) throws Z;
1515

1616
}

0 commit comments

Comments
 (0)