Fixed 2 warnings.

This commit is contained in:
TomyLobo
2012-05-26 12:00:34 +02:00
parent 379189f224
commit 30515a65f5
2 changed files with 3 additions and 2 deletions

View File

@ -76,6 +76,7 @@ public class DynamicPluginCommand extends org.bukkit.command.Command implements
return owningPlugin;
}
@SuppressWarnings("unchecked")
@Override
public boolean testPermissionSilent(CommandSender sender) {
if (permissions == null || permissions.length == 0) {
@ -85,7 +86,7 @@ public class DynamicPluginCommand extends org.bukkit.command.Command implements
if (registeredWith instanceof CommandsManager<?>) {
try {
for (String permission : permissions) {
if (((CommandsManager) registeredWith).hasPermission(sender, permission)) {
if (((CommandsManager<CommandSender>) registeredWith).hasPermission(sender, permission)) {
return true;
}
}