Add Sone removal notification to core listener interface.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / WebInterface.java
index b4fffd9..98539fe 100644 (file)
@@ -745,6 +745,14 @@ public class WebInterface implements CoreListener {
         * {@inheritDoc}
         */
        @Override
+       public void soneRemoved(Sone sone) {
+               newSoneNotification.remove(sone);
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
        public void postRemoved(Post post) {
                newPostNotification.remove(post);
        }