Add missing generic types

This commit is contained in:
Paul Campbell 2018-03-12 20:09:34 +00:00
parent e45246e2b7
commit f5f51cf347

View file

@ -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) {