mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
immutable -> mutable
This commit is contained in:
parent
a0d1da3274
commit
76913d4a78
1 changed files with 2 additions and 2 deletions
|
@ -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<Plot> asList() {
|
||||
final List<Plot> 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<Plot> asSet() {
|
||||
return new HashSet<>(this.asList());
|
||||
|
|
Loading…
Reference in a new issue