Put Nullable annotations in the right place

This commit is contained in:
Luck 2020-05-09 17:32:52 +01:00
parent 7ae532f082
commit 6631e9144e
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B

View File

@ -80,9 +80,8 @@ public final class StandardNodeMatchers {
super(constraint); super(constraint);
} }
@Nullable
@Override @Override
public Node filterConstraintMatch(@NonNull Node node) { public @Nullable Node filterConstraintMatch(@NonNull Node node) {
return node; return node;
} }
} }
@ -112,9 +111,8 @@ public final class StandardNodeMatchers {
super(Constraint.of(StandardComparison.SIMILAR, Meta.key(metaKey, StandardComparison.WILDCARD))); super(Constraint.of(StandardComparison.SIMILAR, Meta.key(metaKey, StandardComparison.WILDCARD)));
} }
@Nullable
@Override @Override
public MetaNode filterConstraintMatch(@NonNull Node node) { public @Nullable MetaNode filterConstraintMatch(@NonNull Node node) {
return NodeType.META.tryCast(node).orElse(null); return NodeType.META.tryCast(node).orElse(null);
} }
} }
@ -127,9 +125,8 @@ public final class StandardNodeMatchers {
this.type = type; this.type = type;
} }
@Nullable
@Override @Override
public T filterConstraintMatch(@NonNull Node node) { public @Nullable T filterConstraintMatch(@NonNull Node node) {
return this.type.tryCast(node).orElse(null); return this.type.tryCast(node).orElse(null);
} }