General cleanup (deprecated+whitespace)

This commit is contained in:
Erik Broes
2011-02-02 00:02:08 +01:00
parent 74929091b9
commit 8039c05c9f
27 changed files with 224 additions and 244 deletions

View File

@@ -6,30 +6,30 @@ import org.bukkit.entity.Player;
* Represents a player animation event
*/
public class PlayerAnimationEvent extends PlayerEvent {
private PlayerAnimationType animationType;
/*
* Construct a new event
*
*
* @param type The event type
* @param player The player instance
*/
public PlayerAnimationEvent(final Type type, final Player player) {
super(type, player);
// Only supported animation type for now:
animationType = PlayerAnimationType.ARM_SWING;
}
/*
* Get the type of this animation event
*
*
* @returns the animation type
*/
public PlayerAnimationType getAnimationType()
{
return animationType;
}
}