From d9a46635fdb6274e2cf8ead37357c626373d94d5 Mon Sep 17 00:00:00 2001 From: Pierre Maurice Schwang Date: Sat, 22 Feb 2025 21:31:02 +0100 Subject: [PATCH] chore: simplify OwnersIncludeFilter (don't construct owner list twice) --- .../core/util/query/OwnersIncludeFilter.java | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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); } }