typos, unused imports

This commit is contained in:
TomyLobo 2013-06-27 14:31:49 +02:00
parent ec4143d3dc
commit d024ed7b81
4 changed files with 5 additions and 8 deletions

View File

@ -382,7 +382,6 @@ private void onEntityDamageByEntity(EntityDamageByEntityEvent event) {
}
}
}
}
}
}
@ -526,7 +525,7 @@ public void onEntityDamage(EntityDamageEvent event) {
return;
}
if (wcfg.teleportOnSuffocation && type == DamageCause.SUFFOCATION) {
if (wcfg.teleportOnSuffocation && type == DamageCause.SUFFOCATION) {
BukkitUtil.findFreePosition(player);
event.setCancelled(true);
return;

View File

@ -18,11 +18,9 @@
import org.bukkit.event.vehicle.VehicleMoveEvent;
import com.sk89q.worldedit.Vector;
import com.sk89q.worldguard.LocalPlayer;
import com.sk89q.worldguard.bukkit.FlagStateManager.PlayerFlagState;
import com.sk89q.worldguard.protection.ApplicableRegionSet;
import com.sk89q.worldguard.protection.flags.DefaultFlag;
import com.sk89q.worldguard.protection.managers.RegionManager;
import com.sk89q.worldguard.protection.regions.ProtectedRegion;
public class WorldGuardVehicleListener implements Listener {

View File

@ -55,7 +55,7 @@ public ApplicableRegionSet(Collection<ProtectedRegion> applicable,
/**
* Checks if a player can build in an area.
*
* @param player The player to chec
* @param player The player to check
* @return build ability
*/
public boolean canBuild(LocalPlayer player) {

View File

@ -120,10 +120,10 @@ private DefaultFlag() {
public static Flag<?>[] getFlags() {
return flagsList;
}
/**
* Try to match the flag with the given ID using a fuzzy name match.
*
*
* @param id the flag ID
* @return a flag, or null
*/
@ -133,7 +133,7 @@ public static Flag<?> fuzzyMatchFlag(String id) {
return flag;
}
}
return null;
}
}