Fixed formatting and removed tabs.

This commit is contained in:
EvilSeph 2011-04-27 23:48:43 -04:00
parent a5aa113ce3
commit 8e95e2788a

View File

@ -7,15 +7,15 @@ import org.bukkit.entity.Player;
*/ */
public class PlayerAnimationEvent extends PlayerEvent { public class PlayerAnimationEvent extends PlayerEvent {
private PlayerAnimationType animationType; private PlayerAnimationType animationType;
/* /*
* Construct a new event * Construct a new event
* *
* @param type The event type * @param type The event type
* @param player The player instance * @param player The player instance
*/ */
public PlayerAnimationEvent(final Player player) { public PlayerAnimationEvent(final Player player) {
super(Type.PLAYER_ANIMATION, player); super(Type.PLAYER_ANIMATION, player);
// Only supported animation type for now: // Only supported animation type for now:
@ -30,5 +30,4 @@ public class PlayerAnimationEvent extends PlayerEvent {
public PlayerAnimationType getAnimationType() { public PlayerAnimationType getAnimationType() {
return animationType; return animationType;
} }
}
}