Functions' interfaces modifiers

Remove the redundant public modifier from the inner interfaces in
Functions, as per the Checkstyle policy of the project.
This commit is contained in:
Allon Mureinik 2019-02-08 18:18:40 +02:00
parent 1c48eb0d8b
commit f7fae53aec
1 changed files with 8 additions and 8 deletions

View File

@ -48,35 +48,35 @@
public class Functions { public class Functions {
@FunctionalInterface @FunctionalInterface
public interface FailableRunnable<T extends Throwable> { public interface FailableRunnable<T extends Throwable> {
public void run() throws T; void run() throws T;
} }
@FunctionalInterface @FunctionalInterface
public interface FailableCallable<O,T extends Throwable> { public interface FailableCallable<O,T extends Throwable> {
public O call() throws T; O call() throws T;
} }
@FunctionalInterface @FunctionalInterface
public interface FailableConsumer<O,T extends Throwable> { public interface FailableConsumer<O,T extends Throwable> {
public void accept(O pObject) throws T; void accept(O pObject) throws T;
} }
@FunctionalInterface @FunctionalInterface
public interface FailableBiConsumer<O1,O2,T extends Throwable> { public interface FailableBiConsumer<O1,O2,T extends Throwable> {
public void accept(O1 pObject1, O2 pObject2) throws T; void accept(O1 pObject1, O2 pObject2) throws T;
} }
@FunctionalInterface @FunctionalInterface
public interface FailableFunction<I,O,T extends Throwable> { public interface FailableFunction<I,O,T extends Throwable> {
public O apply(I pInput) throws T; O apply(I pInput) throws T;
} }
@FunctionalInterface @FunctionalInterface
public interface FailableBiFunction<I1,I2,O,T extends Throwable> { public interface FailableBiFunction<I1,I2,O,T extends Throwable> {
public O apply(I1 pInput1, I2 pInput2) throws T; O apply(I1 pInput1, I2 pInput2) throws T;
} }
@FunctionalInterface @FunctionalInterface
public interface FailablePredicate<O,T extends Throwable> { public interface FailablePredicate<O,T extends Throwable> {
public boolean test(O pObject) throws T; boolean test(O pObject) throws T;
} }
@FunctionalInterface @FunctionalInterface
public interface FailableBiPredicate<O1,O2,T extends Throwable> { public interface FailableBiPredicate<O1,O2,T extends Throwable> {
public boolean test(O1 pObject1, O2 pObject2) throws T; boolean test(O1 pObject1, O2 pObject2) throws T;
} }
public static <T extends Throwable> void run(FailableRunnable<T> pRunnable) { public static <T extends Throwable> void run(FailableRunnable<T> pRunnable) {