Deprecation cleanup.

This commit is contained in:
Erik Broes
2012-01-30 21:32:48 +01:00
committed by EvilSeph
parent 52822729b0
commit 7a06777e19
165 changed files with 409 additions and 4280 deletions

View File

@@ -14,13 +14,13 @@ import org.bukkit.inventory.ItemStack;
public class EntityShootBowEvent extends EntityEvent implements Cancellable {
private static final HandlerList handlers = new HandlerList();
private ItemStack bow;
private final ItemStack bow;
private Entity projectile;
private float force;
private final float force;
private boolean cancelled;
public EntityShootBowEvent(LivingEntity shooter, ItemStack bow, Projectile projectile, float force) {
super(Type.ENTITY_SHOOT_BOW, shooter);
public EntityShootBowEvent(final LivingEntity shooter, final ItemStack bow, final Projectile projectile, final float force) {
super(shooter);
this.bow = bow;
this.projectile = projectile;
this.force = force;