0

Added @SuppressWarnings to unused variable cause the warning annoyed me

This commit is contained in:
Pepich 2017-02-07 00:26:01 +01:00
parent 19e5d2bede
commit 4e66ea9e48

View File

@ -19,7 +19,7 @@ import com.redstoner.misc.Utils;
import com.redstoner.modules.Module; import com.redstoner.modules.Module;
@AutoRegisterListener @AutoRegisterListener
@Version(major = 1, minor = 0, revision = 1, compatible = 1) @Version(major = 1, minor = 0, revision = 2, compatible = 1)
public class Misc implements Module, Listener public class Misc implements Module, Listener
{ {
private boolean enabled = false; private boolean enabled = false;
@ -106,6 +106,8 @@ public class Misc implements Module, Listener
@Command(hook = "tempadd") @Command(hook = "tempadd")
public boolean tempAdd(CommandSender sender, String user, String group, String duration) public boolean tempAdd(CommandSender sender, String user, String group, String duration)
{ {
// Use it to make a proper duration output later. Too lazy rn.
@SuppressWarnings("unused")
int i = 0; int i = 0;
try try
{ {