From 6d05a00331c4f5f5bd1597b326d33080d7e6ac51 Mon Sep 17 00:00:00 2001 From: Chris Ward Date: Sun, 10 Feb 2013 20:37:46 +1100 Subject: [PATCH] Fix compilation, unreachable code. --- Essentials/src/com/earth2me/essentials/commands/Commandban.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandban.java b/Essentials/src/com/earth2me/essentials/commands/Commandban.java index 3523499fe..a8ad1753f 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandban.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandban.java @@ -42,7 +42,6 @@ public class Commandban extends EssentialsCommand && !ess.getUser(sender).isAuthorized("essentials.ban.offline")) { throw new Exception(_("banExempt")); - return; } } else @@ -50,7 +49,6 @@ public class Commandban extends EssentialsCommand if (user.isAuthorized("essentials.ban.exempt") && sender instanceof Player) { throw new Exception(_("banExempt")); - return; } }