Clean up event.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 26 Nov 2014 18:38:49 +0000 (19:38 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 26 Nov 2014 18:38:49 +0000 (19:38 +0100)
src/main/java/net/pterodactylus/sone/core/event/SoneInsertedEvent.java

index 8a4280d..a3d9329 100644 (file)
@@ -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;
        }