Code style: move private constructors for singleton classes to the top of the file
This commit is contained in:
@@ -33,6 +33,7 @@ import java.util.Objects;
|
||||
* Utility class for converting between Velocity and LuckPerms tristate classes
|
||||
*/
|
||||
public final class CompatibilityUtil {
|
||||
private CompatibilityUtil() {}
|
||||
|
||||
public static com.velocitypowered.api.permission.Tristate convertTristate(Tristate tristate) {
|
||||
Objects.requireNonNull(tristate, "tristate");
|
||||
@@ -58,6 +59,4 @@ public final class CompatibilityUtil {
|
||||
}
|
||||
}
|
||||
|
||||
private CompatibilityUtil() {}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user