1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-08 21:30:55 +02:00

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

View File

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