Skip to content

Commit 73703e9

Browse files
Merge pull request #3 from ZoftWhere/feature/release-1.2.0
Release v1.2.0
2 parents ee797d8 + e645d32 commit 73703e9

27 files changed

+413
-99
lines changed

.idea/codeStyles/Project.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package app.zoftwhere.function;
2+
3+
public interface Consumer3<T1, T2, T3> {
4+
5+
void accept(T1 t1, T2 t2, T3 t3);
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package app.zoftwhere.function;
2+
3+
public interface Consumer4<T1, T2, T3, T4> {
4+
5+
void accept(T1 t1, T2 t2, T3 t3, T4 t4);
6+
}

main-java/app/zoftwhere/function/ThrowingConsumer1.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package app.zoftwhere.function;
22

3-
@SuppressWarnings("unused")
43
public interface ThrowingConsumer1<T> {
54

65
void accept(T t) throws Throwable;

main-java/app/zoftwhere/function/ThrowingConsumer2.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package app.zoftwhere.function;
22

3-
@SuppressWarnings("unused")
43
public interface ThrowingConsumer2<T1, T2> {
54

65
void accept(T1 t1, T2 t2) throws Throwable;
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package app.zoftwhere.function;
2+
3+
public interface ThrowingConsumer3<T1, T2, T3> {
4+
5+
void accept(T1 t1, T2 t2, T3 t3) throws Throwable;
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package app.zoftwhere.function;
2+
3+
public interface ThrowingConsumer4<T1, T2, T3, T4> {
4+
5+
void accept(T1 t1, T2 t2, T3 t3, T4 t4) throws Throwable;
6+
}

main-java/app/zoftwhere/function/ThrowingFunction0.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package app.zoftwhere.function;
22

3-
@SuppressWarnings({"RedundantThrows", "RedundantSuppression", "unused"})
43
public interface ThrowingFunction0<R> {
54

65
R accept() throws Throwable;

main-java/app/zoftwhere/function/ThrowingFunction1.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package app.zoftwhere.function;
22

3-
@SuppressWarnings({"RedundantThrows", "RedundantSuppression", "unused"})
43
public interface ThrowingFunction1<T, R> {
54

65
R accept(T t) throws Throwable;

main-java/app/zoftwhere/function/ThrowingFunction2.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package app.zoftwhere.function;
22

3-
@SuppressWarnings({"RedundantThrows", "RedundantSuppression", "unused"})
43
public interface ThrowingFunction2<T1, T2, R> {
54

65
R accept(T1 t1, T2 t2) throws Throwable;

0 commit comments

Comments
 (0)