More formatting :)

This commit is contained in:
TfT_02 2013-05-17 21:09:19 +02:00 committed by T00thpick1
parent 6dbf2e0d95
commit 23b1518dc0
3 changed files with 4 additions and 5 deletions

View File

@ -18,11 +18,11 @@ public class McMMOPlayerFishingTreasureEvent extends McMMOPlayerSkillEvent imple
this.treasure = treasure; this.treasure = treasure;
this.xp = xp; this.xp = xp;
} }
public ItemStack getTreasure() { public ItemStack getTreasure() {
return treasure; return treasure;
} }
public void setTreasure(ItemStack item) { public void setTreasure(ItemStack item) {
this.treasure = item; this.treasure = item;
} }

View File

@ -6,7 +6,6 @@ import org.bukkit.enchantments.Enchantment;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.ItemStack;
public class McMMOPlayerMagicHunterEvent extends McMMOPlayerFishingTreasureEvent { public class McMMOPlayerMagicHunterEvent extends McMMOPlayerFishingTreasureEvent {
private Map<Enchantment, Integer> enchants; private Map<Enchantment, Integer> enchants;
@ -15,7 +14,7 @@ public class McMMOPlayerMagicHunterEvent extends McMMOPlayerFishingTreasureEvent
super(player, treasure, xp); super(player, treasure, xp);
this.enchants = enchants; this.enchants = enchants;
} }
public Map<Enchantment, Integer> getEnchantments() { public Map<Enchantment, Integer> getEnchantments() {
return enchants; return enchants;
} }

View File

@ -22,7 +22,7 @@ public class McMMOPlayerShakeEvent extends McMMOPlayerSkillEvent implements Canc
} }
public void setCancelled(boolean newValue) { public void setCancelled(boolean newValue) {
this.cancelled = newValue; this.cancelled = newValue;
} }
public ItemStack getDrop() { public ItemStack getDrop() {