Add missing generic types
This commit is contained in:
parent
ab47d4cad7
commit
d1ca0b039f
1 changed files with 3 additions and 1 deletions
|
@ -52,8 +52,10 @@ class FalseValueClause<T> implements Value.ValueClause<T> {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An intermediate result of the {@link Value} where the clause has evaluated to false.
|
* An intermediate result of the {@link Value} where the clause has evaluated to false.
|
||||||
|
*
|
||||||
|
* @param <T> the type of the value
|
||||||
*/
|
*/
|
||||||
private class FalseValueSupplier implements ValueSupplier<T> {
|
private static final class FalseValueSupplier<T> implements ValueSupplier<T> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public T otherwise(final Supplier<T> falseSupplier) {
|
public T otherwise(final Supplier<T> falseSupplier) {
|
||||||
|
|
Loading…
Reference in a new issue