From 7d382b5ee686714023488ff9c2c92e444550bc65 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Wed, 27 Apr 2011 23:48:43 -0400 Subject: [PATCH] Fixed formatting and removed tabs. By: EvilSeph --- .../event/player/PlayerAnimationEvent.java | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/event/player/PlayerAnimationEvent.java b/paper-api/src/main/java/org/bukkit/event/player/PlayerAnimationEvent.java index 1d3be48e98..a42743d4bd 100644 --- a/paper-api/src/main/java/org/bukkit/event/player/PlayerAnimationEvent.java +++ b/paper-api/src/main/java/org/bukkit/event/player/PlayerAnimationEvent.java @@ -7,15 +7,15 @@ import org.bukkit.entity.Player; */ public class PlayerAnimationEvent extends PlayerEvent { - private PlayerAnimationType animationType; + private PlayerAnimationType animationType; - /* - * Construct a new event - * - * @param type The event type - * @param player The player instance - */ - public PlayerAnimationEvent(final Player player) { + /* + * Construct a new event + * + * @param type The event type + * @param player The player instance + */ + public PlayerAnimationEvent(final Player player) { super(Type.PLAYER_ANIMATION, player); // Only supported animation type for now: @@ -30,5 +30,4 @@ public class PlayerAnimationEvent extends PlayerEvent { public PlayerAnimationType getAnimationType() { return animationType; } - -} +} \ No newline at end of file