Skip to content

Commit 56a5bd6

Browse files
committed
chore: doesn't need to be internal anymore
1 parent 78f7864 commit 56a5bd6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Core/src/main/java/com/plotsquared/core/util/comparator/PlotByCreationDateComparator.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
package com.plotsquared.core.util.comparator;
22

33
import com.plotsquared.core.plot.Plot;
4-
import org.jetbrains.annotations.ApiStatus;
54

65
import java.util.Comparator;
76

87
/**
98
* Sort plots by {@link Plot#temp} (being the auto increment id in database) in natural order for {@code temp > 0}.
109
* For {@code temp < 1} sort by {@link Plot#hashCode()}
1110
*/
12-
@ApiStatus.Internal
1311
public class PlotByCreationDateComparator implements Comparator<Plot> {
1412

15-
@ApiStatus.Internal
1613
public static final Comparator<Plot> INSTANCE = new PlotByCreationDateComparator();
1714

1815
private PlotByCreationDateComparator() {

0 commit comments

Comments
 (0)