From 6805800743940e2cf794f361eff7e6cf08f6d268 Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Thu, 7 Dec 2023 18:25:13 +0100 Subject: [PATCH] Address feedback --- .../main/java/com/plotsquared/core/util/query/PlotQuery.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java index 4afb95a854..22063d9f60 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java @@ -219,13 +219,13 @@ public static PlotQuery newQuery() { return this.addFilter(new OwnersIncludeFilter(owner.getUUID())); } - /** * Query only for plots that have an owner * * @return The query instance * @since TODO */ + public @NonNull PlotQuery hasOwner() { return this.addFilter(new HasOwnerFilter()); }