Convert “Sone unlocked” into EventBus-based event.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / CoreListenerManager.java
index 44fb67b..d485b12 100644 (file)
@@ -44,19 +44,6 @@ public class CoreListenerManager extends AbstractListenerManager<Core, CoreListe
        //
 
        /**
-        * Notifies all listeners that the given Sone was unlocked.
-        *
-        * @see CoreListener#soneUnlocked(Sone)
-        * @param sone
-        *            The Sone that was unlocked
-        */
-       void fireSoneUnlocked(Sone sone) {
-               for (CoreListener coreListener : getListeners()) {
-                       coreListener.soneUnlocked(sone);
-               }
-       }
-
-       /**
         * Notifies all listeners that the insert of the given Sone has started.
         *
         * @see SoneInsertListener#insertStarted(Sone)