mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-23 19:16:40 +01:00
Make NormativeOrders non-instantiable.
This commit is contained in:
parent
6fe63838f5
commit
6c1489d434
@ -58,10 +58,13 @@
|
||||
* <p>These sorted lists are required for {@link FlagValueCalculator} and
|
||||
* some implementations of {@link ApplicableRegionSet}.</p>
|
||||
*/
|
||||
public class NormativeOrders {
|
||||
public final class NormativeOrders {
|
||||
|
||||
private static final PriorityComparator PRIORITY_COMPARATOR = new PriorityComparator();
|
||||
|
||||
private NormativeOrders() {
|
||||
}
|
||||
|
||||
public static void sort(List<ProtectedRegion> regions) {
|
||||
sortInto(Sets.newHashSet(regions), regions);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user