mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-04-03 01:56:24 +02:00
chore: doesn't need to be internal anymore
This commit is contained in:
parent
fb2165e4e0
commit
9c64c2e5fa
@ -1,7 +1,6 @@
|
|||||||
package com.plotsquared.core.util.comparator;
|
package com.plotsquared.core.util.comparator;
|
||||||
|
|
||||||
import com.plotsquared.core.plot.Plot;
|
import com.plotsquared.core.plot.Plot;
|
||||||
import org.jetbrains.annotations.ApiStatus;
|
|
||||||
|
|
||||||
import java.util.Comparator;
|
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}.
|
* 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()}
|
* For {@code temp < 1} sort by {@link Plot#hashCode()}
|
||||||
*/
|
*/
|
||||||
@ApiStatus.Internal
|
|
||||||
public class PlotByCreationDateComparator implements Comparator<Plot> {
|
public class PlotByCreationDateComparator implements Comparator<Plot> {
|
||||||
|
|
||||||
@ApiStatus.Internal
|
|
||||||
public static final Comparator<Plot> INSTANCE = new PlotByCreationDateComparator();
|
public static final Comparator<Plot> INSTANCE = new PlotByCreationDateComparator();
|
||||||
|
|
||||||
private PlotByCreationDateComparator() {
|
private PlotByCreationDateComparator() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user