Makes the UUIDMigrationHelper final

This commit is contained in:
Kristian Knarvik 2021-11-12 13:46:01 +01:00
parent ad310ddb9c
commit 42e02eb141

View File

@ -19,7 +19,11 @@ import java.util.UUID;
/** /**
* Helps migrate player names to UUID where necessary * Helps migrate player names to UUID where necessary
*/ */
public class UUIDMigrationHelper { public final class UUIDMigrationHelper {
private UUIDMigrationHelper() {
}
private static Map<String, List<Portal>> playerNamesToMigrate; private static Map<String, List<Portal>> playerNamesToMigrate;