chore: doesn't need to be internal anymore

This commit is contained in:
Pierre Maurice Schwang 2025-02-23 20:28:58 +01:00
parent fb2165e4e0
commit 9c64c2e5fa
No known key found for this signature in database
GPG Key ID: 37E613079F3E5BB9

View File

@ -1,7 +1,6 @@
package com.plotsquared.core.util.comparator;
import com.plotsquared.core.plot.Plot;
import org.jetbrains.annotations.ApiStatus;
import java.util.Comparator;
@ -9,10 +8,8 @@ import java.util.Comparator;
* Sort plots by {@link Plot#temp} (being the auto increment id in database) in natural order for {@code temp > 0}.
* For {@code temp < 1} sort by {@link Plot#hashCode()}
*/
@ApiStatus.Internal
public class PlotByCreationDateComparator implements Comparator<Plot> {
@ApiStatus.Internal
public static final Comparator<Plot> INSTANCE = new PlotByCreationDateComparator();
private PlotByCreationDateComparator() {