SteamWar/SpigotCore
Archiviert
13
0

Fix BauweltMemberConfig

Dieser Commit ist enthalten in:
yoyosource 2021-04-30 14:57:58 +02:00
Ursprung 319fcdfae0
Commit ad05babe45

Datei anzeigen

@ -28,7 +28,7 @@ import java.util.UUID;
public final class BauweltMemberConfig { public final class BauweltMemberConfig {
private BauweltMemberConfig() { private BauweltMemberConfig() {
throw new IllegalStateException("Utility Class");
} }
public static String getPlayerConfig(Player player) { public static String getPlayerConfig(Player player) {
@ -47,7 +47,7 @@ public final class BauweltMemberConfig {
} }
return config.getString("BauConfig"); return config.getString("BauConfig");
} catch (SQLException e) { } catch (SQLException e) {
return null; throw new SecurityException();
} }
} }