X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2Fevent%2FSoneInsertedEvent.java;h=a3d932957b131fe66126489d3c5b6c802f6aaa72;hp=8a4280df244e7cc67e753bcfa75f3fe7b02d4551;hb=501893782e9dbe29b50019939cdefb8d803d1348;hpb=17bc7628a552608caa3bc2057428cdc80535444b diff --git a/src/main/java/net/pterodactylus/sone/core/event/SoneInsertedEvent.java b/src/main/java/net/pterodactylus/sone/core/event/SoneInsertedEvent.java index 8a4280d..a3d9329 100644 --- a/src/main/java/net/pterodactylus/sone/core/event/SoneInsertedEvent.java +++ b/src/main/java/net/pterodactylus/sone/core/event/SoneInsertedEvent.java @@ -26,31 +26,13 @@ import net.pterodactylus.sone.data.Sone; */ public class SoneInsertedEvent extends SoneEvent { - /** The duration of the insert. */ private final long insertDuration; - /** - * Creates a new “Sone was inserted” event. - * - * @param sone - * The Sone that was inserted - * @param insertDuration - * The duration of the insert (in milliseconds) - */ public SoneInsertedEvent(Sone sone, long insertDuration) { super(sone); this.insertDuration = insertDuration; } - // - // ACCESSORS - // - - /** - * Returns the duration of the insert. - * - * @return The duration of the insert (in milliseconds) - */ public long insertDuration() { return insertDuration; }