summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/event/player/PlayerStatisticIncrementEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bukkit/event/player/PlayerStatisticIncrementEvent.java')
-rw-r--r--src/main/java/org/bukkit/event/player/PlayerStatisticIncrementEvent.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/bukkit/event/player/PlayerStatisticIncrementEvent.java b/src/main/java/org/bukkit/event/player/PlayerStatisticIncrementEvent.java
index 3b64d702..7c70bbb0 100644
--- a/src/main/java/org/bukkit/event/player/PlayerStatisticIncrementEvent.java
+++ b/src/main/java/org/bukkit/event/player/PlayerStatisticIncrementEvent.java
@@ -24,7 +24,7 @@ public class PlayerStatisticIncrementEvent extends PlayerEvent implements Cancel
private final Material material;
public PlayerStatisticIncrementEvent(Player player, Statistic statistic, int initialValue, int newValue) {
- super (player);
+ super(player);
this.statistic = statistic;
this.initialValue = initialValue;
this.newValue = newValue;
@@ -33,7 +33,7 @@ public class PlayerStatisticIncrementEvent extends PlayerEvent implements Cancel
}
public PlayerStatisticIncrementEvent(Player player, Statistic statistic, int initialValue, int newValue, EntityType entityType) {
- super (player);
+ super(player);
this.statistic = statistic;
this.initialValue = initialValue;
this.newValue = newValue;
@@ -42,7 +42,7 @@ public class PlayerStatisticIncrementEvent extends PlayerEvent implements Cancel
}
public PlayerStatisticIncrementEvent(Player player, Statistic statistic, int initialValue, int newValue, Material material) {
- super (player);
+ super(player);
this.statistic = statistic;
this.initialValue = initialValue;
this.newValue = newValue;