Add methods to notify core listeners about removed posts and replies.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / WebInterface.java
index 75b218c..dc09d78 100644 (file)
@@ -491,6 +491,22 @@ public class WebInterface implements CoreListener {
        }
 
        /**
+        * {@inheritDoc}
+        */
+       @Override
+       public void postRemoved(Post post) {
+               /* TODO */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       public void replyRemoved(Reply reply) {
+               /* TODO */
+       }
+
+       /**
         * Template provider implementation that uses
         * {@link WebInterface#createReader(String)} to load templates for
         * inclusion.