Remove trailing white spaces on all lines.

This commit is contained in:
Gary Gregory 2019-09-05 11:49:43 -04:00
parent 5eac208ce6
commit 327cf6047d

View File

@ -54,7 +54,7 @@
* Lambda expressions is met better than the second version.
*/
public class Functions {
@FunctionalInterface
public interface FailableRunnable<T extends Throwable> {
/**
@ -63,7 +63,7 @@ public interface FailableRunnable<T extends Throwable> {
*/
void run() throws T;
}
@FunctionalInterface
public interface FailableCallable<O, T extends Throwable> {
/**
@ -73,7 +73,7 @@ public interface FailableCallable<O, T extends Throwable> {
*/
O call() throws T;
}
@FunctionalInterface
public interface FailableConsumer<O, T extends Throwable> {
/**
@ -83,7 +83,7 @@ public interface FailableConsumer<O, T extends Throwable> {
*/
void accept(O pObject) throws T;
}
@FunctionalInterface
public interface FailableBiConsumer<O1, O2, T extends Throwable> {
/**
@ -94,7 +94,7 @@ public interface FailableBiConsumer<O1, O2, T extends Throwable> {
*/
void accept(O1 pObject1, O2 pObject2) throws T;
}
@FunctionalInterface
public interface FailableFunction<I, O, T extends Throwable> {
/**
@ -105,7 +105,7 @@ public interface FailableFunction<I, O, T extends Throwable> {
*/
O apply(I pInput) throws T;
}
@FunctionalInterface
public interface FailableBiFunction<I1, I2, O, T extends Throwable> {
/**
@ -117,7 +117,7 @@ public interface FailableBiFunction<I1, I2, O, T extends Throwable> {
*/
O apply(I1 pInput1, I2 pInput2) throws T;
}
@FunctionalInterface
public interface FailablePredicate<O, T extends Throwable> {
/**
@ -128,7 +128,7 @@ public interface FailablePredicate<O, T extends Throwable> {
*/
boolean test(O pObject) throws T;
}
@FunctionalInterface
public interface FailableBiPredicate<O1, O2, T extends Throwable> {
/**
@ -140,7 +140,7 @@ public interface FailableBiPredicate<O1, O2, T extends Throwable> {
*/
boolean test(O1 pObject1, O2 pObject2) throws T;
}
@FunctionalInterface
public interface FailableSupplier<O, T extends Throwable> {
/**