Remove @author tags
[Sone.git] / src / main / java / net / pterodactylus / sone / core / event / SoneInsertedEvent.java
index a3d9329..3f606ba 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - SoneInsertedEvent.java - Copyright © 2013 David Roden
+ * Sone - SoneInsertedEvent.java - Copyright © 2013–2016 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,20 +21,24 @@ import net.pterodactylus.sone.data.Sone;
 
 /**
  * Event that signals that a {@link Sone} was inserted.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public class SoneInsertedEvent extends SoneEvent {
 
        private final long insertDuration;
+       private final String insertFingerprint;
 
-       public SoneInsertedEvent(Sone sone, long insertDuration) {
+       public SoneInsertedEvent(Sone sone, long insertDuration, String insertFingerprint) {
                super(sone);
                this.insertDuration = insertDuration;
+               this.insertFingerprint = insertFingerprint;
        }
 
        public long insertDuration() {
                return insertDuration;
        }
 
+       public String insertFingerprint() {
+               return insertFingerprint;
+       }
+
 }