Fix checkstyle: End files in a new line.

This commit is contained in:
Gary Gregory 2020-06-17 16:38:47 -04:00
parent 74d8ad5c2c
commit 5d1a5517c9
32 changed files with 477 additions and 200 deletions

View File

@ -35,4 +35,4 @@ public interface FailableBooleanSupplier<T extends Throwable> {
* @throws T if the supplier fails * @throws T if the supplier fails
*/ */
boolean getAsBoolean() throws T; boolean getAsBoolean() throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableDoubleBinaryOperator<T extends Throwable> {
* @throws T if the operation fails * @throws T if the operation fails
*/ */
double applyAsDouble(double left, double right) throws T; double applyAsDouble(double left, double right) throws T;
} }

View File

@ -35,4 +35,4 @@ public interface FailableDoubleConsumer<T extends Throwable> {
* @throws T Thrown when the consumer fails. * @throws T Thrown when the consumer fails.
*/ */
void accept(double value) throws T; void accept(double value) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableDoubleFunction<R, T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
R apply(double input) throws T; R apply(double input) throws T;
} }

View File

@ -36,4 +36,4 @@ public interface FailableDoublePredicate<T extends Throwable> {
* @throws T Thrown when the consumer fails. * @throws T Thrown when the consumer fails.
*/ */
boolean test(double value) throws T; boolean test(double value) throws T;
} }

View File

@ -35,4 +35,4 @@ public interface FailableDoubleSupplier<T extends Throwable> {
* @throws T if the supplier fails * @throws T if the supplier fails
*/ */
double getAsDouble() throws T; double getAsDouble() throws T;
} }

View File

@ -36,4 +36,4 @@ public interface FailableDoubleToIntFunction<T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
int applyAsInt(double value) throws T; int applyAsInt(double value) throws T;
} }

View File

@ -36,4 +36,4 @@ public interface FailableDoubleToLongFunction<T extends Throwable> {
* @throws T if the operation fails * @throws T if the operation fails
*/ */
int applyAsLong(double value) throws T; int applyAsLong(double value) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableIntBinaryOperator<T extends Throwable> {
* @throws T if the operation fails * @throws T if the operation fails
*/ */
int applyAsInt(int left, int right) throws T; int applyAsInt(int left, int right) throws T;
} }

View File

@ -35,4 +35,4 @@ public interface FailableIntConsumer<T extends Throwable> {
* @throws T Thrown when the consumer fails. * @throws T Thrown when the consumer fails.
*/ */
void accept(int value) throws T; void accept(int value) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableIntFunction<R, T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
R apply(int input) throws T; R apply(int input) throws T;
} }

View File

@ -36,4 +36,4 @@ public interface FailableIntPredicate<T extends Throwable> {
* @throws T Thrown when the consumer fails. * @throws T Thrown when the consumer fails.
*/ */
boolean test(int value) throws T; boolean test(int value) throws T;
} }

View File

@ -35,4 +35,4 @@ public interface FailableIntSupplier<T extends Throwable> {
* @throws T if the supplier fails * @throws T if the supplier fails
*/ */
int getAsInt() throws T; int getAsInt() throws T;
} }

View File

@ -36,4 +36,4 @@ public interface FailableIntToDoubleFunction<T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
double applyAsDouble(int value) throws T; double applyAsDouble(int value) throws T;
} }

View File

@ -36,4 +36,4 @@ public interface FailableIntToLongFunction<T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
long applyAsLong(int value) throws T; long applyAsLong(int value) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableLongBinaryOperator<T extends Throwable> {
* @throws T if the operation fails * @throws T if the operation fails
*/ */
long applyAsLong(long left, long right) throws T; long applyAsLong(long left, long right) throws T;
} }

View File

@ -35,4 +35,4 @@ public interface FailableLongConsumer<T extends Throwable> {
* @throws T Thrown when the consumer fails. * @throws T Thrown when the consumer fails.
*/ */
void accept(long object) throws T; void accept(long object) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableLongFunction<R, T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
R apply(long input) throws T; R apply(long input) throws T;
} }

View File

@ -36,4 +36,4 @@ public interface FailableLongPredicate<T extends Throwable> {
* @throws T Thrown when the consumer fails. * @throws T Thrown when the consumer fails.
*/ */
boolean test(long value) throws T; boolean test(long value) throws T;
} }

View File

@ -35,4 +35,4 @@ public interface FailableLongSupplier<T extends Throwable> {
* @throws T if the supplier fails * @throws T if the supplier fails
*/ */
long getAsLong() throws T; long getAsLong() throws T;
} }

View File

@ -36,4 +36,4 @@ public interface FailableLongToDoubleFunction<T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
double applyAsDouble(long value) throws T; double applyAsDouble(long value) throws T;
} }

View File

@ -36,4 +36,4 @@ public interface FailableLongToIntFunction<T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
int applyAsInt(long value) throws T; int applyAsInt(long value) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableObjDoubleConsumer<O, T extends Throwable> {
* @throws T Thrown when the consumer fails. * @throws T Thrown when the consumer fails.
*/ */
void accept(O object, double value) throws T; void accept(O object, double value) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableObjIntConsumer<O, T extends Throwable> {
* @throws T Thrown when the consumer fails. * @throws T Thrown when the consumer fails.
*/ */
void accept(O object, int value) throws T; void accept(O object, int value) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableObjLongConsumer<O, T extends Throwable> {
* @throws T Thrown when the consumer fails. * @throws T Thrown when the consumer fails.
*/ */
void accept(O object, long value) throws T; void accept(O object, long value) throws T;
} }

View File

@ -39,4 +39,4 @@ public interface FailableToDoubleBiFunction<O1, O2, T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
double applyAsDouble(O1 t, O2 u) throws T; double applyAsDouble(O1 t, O2 u) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableToDoubleFunction<I, T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
double applyAsDouble(I t) throws T; double applyAsDouble(I t) throws T;
} }

View File

@ -39,4 +39,4 @@ public interface FailableToIntBiFunction<O1, O2, T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
int applyAsInt(O1 t, O2 u) throws T; int applyAsInt(O1 t, O2 u) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableToIntFunction<I, T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
int applyAsInt(I t) throws T; int applyAsInt(I t) throws T;
} }

View File

@ -39,4 +39,4 @@ public interface FailableToLongBiFunction<O1, O2, T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
long applyAsLong(O1 t, O2 u) throws T; long applyAsLong(O1 t, O2 u) throws T;
} }

View File

@ -37,4 +37,4 @@ public interface FailableToLongFunction<I, T extends Throwable> {
* @throws T Thrown when the function fails. * @throws T Thrown when the function fails.
*/ */
long applyAsLong(I t) throws T; long applyAsLong(I t) throws T;
} }