Ratpack fix formatting and non-ascii characters

This commit is contained in:
Jonathan Leitschuh
2021-05-11 10:58:33 -04:00
parent a3b1736a73
commit cdfdcc66bd
21 changed files with 27 additions and 26 deletions

View File

@@ -22,7 +22,7 @@ package ratpack.func;
* This type serves the same purpose as the JDK's {@link java.util.function.Predicate}, but allows throwing checked exceptions.
* It contains methods for bridging to and from the JDK type.
*
* @param <T> the type of object tested by the predicate
* @param <T> the type of object "tested" by the predicate
*/
@FunctionalInterface
public interface Predicate<T> {
@@ -30,7 +30,7 @@ public interface Predicate<T> {
/**
* Tests the given value.
*
* @param t the value to test
* @param t the value to "test"
* @return {@code true} if the predicate applied, otherwise {@code false}
* @throws Exception any
*/
@@ -93,4 +93,4 @@ public interface Predicate<T> {
return null;
}
}
}