From 4d644e3ffce3557f25c5b3e579a5dad31c7ae124 Mon Sep 17 00:00:00 2001 From: tastybento Date: Wed, 11 Dec 2019 16:33:25 -0800 Subject: [PATCH] Fixed java doc in AcidRainEvent --- .../world/bentobox/acidisland/events/AcidRainEvent.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/java/world/bentobox/acidisland/events/AcidRainEvent.java b/src/main/java/world/bentobox/acidisland/events/AcidRainEvent.java index 60e8e20..f1ab40e 100644 --- a/src/main/java/world/bentobox/acidisland/events/AcidRainEvent.java +++ b/src/main/java/world/bentobox/acidisland/events/AcidRainEvent.java @@ -1,13 +1,13 @@ package world.bentobox.acidisland.events; +import java.util.List; + import org.bukkit.entity.Player; import org.bukkit.event.Cancellable; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; import org.bukkit.potion.PotionEffectType; -import java.util.List; - /** * This event is fired when a player is going to be burned by acid rain * @@ -79,7 +79,7 @@ public class AcidRainEvent extends Event implements Cancellable { /** * Returns the potion effects that will be applied to the player. - * @return + * @return list of potion effect types * @since 1.9.1 */ public List getPotionEffects() { @@ -89,7 +89,6 @@ public class AcidRainEvent extends Event implements Cancellable { /** * * @param potionEffects the potionEffects to set - * @return * @since 1.9.1 */ public void setPotionEffects(List potionEffects) {