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 208fac5d7..67abfd1fa 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 @@ -253,7 +253,7 @@ public final class PlotQuery { /** * Get all plots that match the given criteria * - * @return Matching plots as an immutable list + * @return Matching plots as a mutable */ @NotNull public List asList() { final List result; @@ -320,7 +320,7 @@ public final class PlotQuery { /** * Get all plots that match the given criteria * - * @return Matching plots as an immutable set + * @return Matching plots as a mutable set */ @NotNull public Set asSet() { return new HashSet<>(this.asList());