From 4078f0708b92555ee28898fe57584450998e926e Mon Sep 17 00:00:00 2001 From: manuelgu Date: Sat, 28 May 2016 00:29:27 +0200 Subject: [PATCH] Proper javadoc for event --- .../com/plotsquared/sponge/events/PlotComponentSetEvent.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Sponge/src/main/java/com/plotsquared/sponge/events/PlotComponentSetEvent.java b/Sponge/src/main/java/com/plotsquared/sponge/events/PlotComponentSetEvent.java index 4558368a3..d0cdd4e1d 100644 --- a/Sponge/src/main/java/com/plotsquared/sponge/events/PlotComponentSetEvent.java +++ b/Sponge/src/main/java/com/plotsquared/sponge/events/PlotComponentSetEvent.java @@ -11,9 +11,10 @@ public class PlotComponentSetEvent extends AbstractEvent { private final String component; /** - * PlotDeleteEvent: Called when a plot is deleted + * PlotDeleteEvent: Called when a plot component is set * - * @param plot The plot that was deleted + * @param plot The plot + * @param component The component which was set */ public PlotComponentSetEvent(Plot plot, String component) { this.plot = plot;