X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FCoreListener.java;h=7b5c15c99b9d114d88f7d6f109b43c251107b82a;hb=f35aa413bce1d18c6f822719f7864ea6838cd043;hp=0ae6fe1a987f12a7888b6edde6982543fd411ce6;hpb=fdcd6fa4e0110028080d0b4a9ef3c5f8e5a5e867;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/core/CoreListener.java b/src/main/java/net/pterodactylus/sone/core/CoreListener.java index 0ae6fe1..7b5c15c 100644 --- a/src/main/java/net/pterodactylus/sone/core/CoreListener.java +++ b/src/main/java/net/pterodactylus/sone/core/CoreListener.java @@ -32,43 +32,6 @@ import net.pterodactylus.util.version.Version; public interface CoreListener extends EventListener { /** - * Notifies a listener when a Sone was locked. - * - * @param sone - * The Sone that was locked - */ - public void soneLocked(Sone sone); - - /** - * Notifies a listener that a Sone was unlocked. - * - * @param sone - * The Sone that was unlocked - */ - public void soneUnlocked(Sone sone); - - /** - * Notifies a listener that the insert of the given Sone has started. - * - * @see SoneInsertListener#insertStarted(Sone) - * @param sone - * The Sone that is being inserted - */ - public void soneInserting(Sone sone); - - /** - * Notifies a listener that the insert of the given Sone has finished - * successfully. - * - * @see SoneInsertListener#insertFinished(Sone, long) - * @param sone - * The Sone that has been inserted - * @param insertDuration - * The insert duration (in milliseconds) - */ - public void soneInserted(Sone sone, long insertDuration); - - /** * Notifies a listener that the insert of the given Sone was aborted. * * @see SoneInsertListener#insertAborted(Sone, Throwable)