Checkstyle: new line at end of file

This commit is contained in:
aherbert 2020-06-18 11:48:12 +01:00
parent abf6899e07
commit f53ff8cc20
4 changed files with 4 additions and 4 deletions

View File

@ -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;
}
}

View File

@ -37,4 +37,4 @@ public interface FailablePredicate<I, T extends Throwable> {
* @throws T if the predicate fails
*/
boolean test(I object) throws T;
}
}

View File

@ -32,4 +32,4 @@ public interface FailableRunnable<T extends Throwable> {
* @throws T Thrown when the function fails.
*/
void run() throws T;
}
}

View File

@ -36,4 +36,4 @@ public interface FailableSupplier<R, T extends Throwable> {
* @throws T if the supplier fails
*/
R get() throws T;
}
}