Upstream, generics, formatting

This commit is contained in:
MattBDev
2019-06-11 16:07:43 -04:00
parent e2c2205dac
commit cd88e513a8
126 changed files with 2488 additions and 3091 deletions

View File

@ -15,12 +15,13 @@ import org.bukkit.ChatColor;
import org.bukkit.Location;
import org.bukkit.command.ConsoleCommandSender;
import org.bukkit.entity.Player;
import org.jetbrains.annotations.NotNull;
public class BukkitPlayer extends FawePlayer<Player> {
private static ConsoleCommandSender console;
public BukkitPlayer(final Player parent) {
public BukkitPlayer(@NotNull final Player parent) {
super(parent);
}

View File

@ -81,7 +81,7 @@ public class FaweBukkit implements IFawe, Listener {
return this.vault;
}
public FaweBukkit(Plugin plugin) {
public FaweBukkit(WorldEditPlugin plugin) {
this.plugin = plugin;
try {
Settings.IMP.TICK_LIMITER.ENABLED = !Bukkit.hasWhitelist();