Address a few deprecations

This commit is contained in:
NotMyFault
2021-05-01 18:33:02 +02:00
parent 11af33f2d5
commit 0106a4222d
64 changed files with 133 additions and 126 deletions

View File

@ -69,7 +69,7 @@ public class BukkitCommand implements CommandExecutor, TabCompleter {
if (!(commandSender instanceof Player)) {
return null;
}
PlotPlayer player = BukkitUtil.adapt((Player) commandSender);
PlotPlayer<?> player = BukkitUtil.adapt((Player) commandSender);
if (args.length == 0) {
return Collections.singletonList("plots");
}