Skip to content

Commit

Permalink
Fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
minborg committed May 5, 2015
1 parent 9f53373 commit 2f93e2f
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -34,8 +34,8 @@ public class IntUnaryPredicateBuilder<ENTITY> extends BasePredicate<ENTITY> impl
private final StandardUnaryOperator unaryOperator; private final StandardUnaryOperator unaryOperator;


public IntUnaryPredicateBuilder( public IntUnaryPredicateBuilder(
IntField field, IntField field,
StandardUnaryOperator unaryOperator StandardUnaryOperator unaryOperator
) { ) {
this.field = Objects.requireNonNull(field); this.field = Objects.requireNonNull(field);
this.unaryOperator = Objects.requireNonNull(unaryOperator); this.unaryOperator = Objects.requireNonNull(unaryOperator);
Expand All @@ -52,7 +52,7 @@ public IntField getField() {
} }


@Override @Override
public Operator getOperator() { public StandardUnaryOperator getOperator() {
return unaryOperator; return unaryOperator;
} }


Expand Down

0 comments on commit 2f93e2f

Please sign in to comment.