Checkstyle: new line at end of file
This commit is contained in:
parent
abf6899e07
commit
f53ff8cc20
|
@ -38,4 +38,4 @@ public interface FailableFunction<I, R, T extends Throwable> {
|
|||
* @throws T Thrown when the function fails.
|
||||
*/
|
||||
R apply(I input) throws T;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -37,4 +37,4 @@ public interface FailablePredicate<I, T extends Throwable> {
|
|||
* @throws T if the predicate fails
|
||||
*/
|
||||
boolean test(I object) throws T;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -32,4 +32,4 @@ public interface FailableRunnable<T extends Throwable> {
|
|||
* @throws T Thrown when the function fails.
|
||||
*/
|
||||
void run() throws T;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,4 +36,4 @@ public interface FailableSupplier<R, T extends Throwable> {
|
|||
* @throws T if the supplier fails
|
||||
*/
|
||||
R get() throws T;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue