0

Added missing return statements

This commit is contained in:
Pepich 2017-02-02 20:03:28 +01:00
parent 2562896d26
commit 851230f58c

View File

@ -48,6 +48,7 @@ public class LoginSecurity implements Module, Listener
Utils.sendErrorMessage(Bukkit.getConsoleSender(), null, Utils.sendErrorMessage(Bukkit.getConsoleSender(), null,
"Could not load the LoginSecurity config file, disabling!"); "Could not load the LoginSecurity config file, disabling!");
enabled = false; enabled = false;
return;
} }
try try
{ {
@ -62,6 +63,7 @@ public class LoginSecurity implements Module, Listener
Utils.sendErrorMessage(Bukkit.getConsoleSender(), null, Utils.sendErrorMessage(Bukkit.getConsoleSender(), null,
"Could not use the LoginSecurity config, disabling!"); "Could not use the LoginSecurity config, disabling!");
enabled = false; enabled = false;
return;
} }
loggingIn = new HashMap<>(); loggingIn = new HashMap<>();
Bukkit.getServer().getPluginManager().registerEvents(new CancelledEventsHandler(this), Main.plugin); Bukkit.getServer().getPluginManager().registerEvents(new CancelledEventsHandler(this), Main.plugin);