diff --git a/Core/src/main/java/com/plotsquared/core/util/query/OwnersIncludeFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/OwnersIncludeFilter.java index 8a9969b3e..fc54c0d41 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/OwnersIncludeFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/OwnersIncludeFilter.java @@ -23,17 +23,11 @@ import org.checkerframework.checker.nullness.qual.NonNull; import java.util.UUID; -class OwnersIncludeFilter implements PlotFilter { - - private final UUID owner; - - OwnersIncludeFilter(final @NonNull UUID owner) { - this.owner = owner; - } +record OwnersIncludeFilter(UUID owner) implements PlotFilter { @Override public boolean accepts(final @NonNull Plot plot) { - return plot.isBasePlot() && plot.getOwners().size() > 0 && plot.getOwners().contains(owner); + return plot.isBasePlot() && plot.isOwner(owner); } }