Replace reply-specific interfaces with Kotlin versions
[Sone.git] / src / main / java / net / pterodactylus / sone / database / PostStore.java
index 9c2ca42..7c3e07f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - PostStore.java - Copyright © 2013 David Roden
+ * Sone - PostStore.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
@@ -45,25 +45,4 @@ public interface PostStore {
         */
        public void removePost(Post post);
 
-       /**
-        * Stores the given posts as all posts of a single {@link Sone}. This method
-        * will removed all other posts from the Sone!
-        *
-        * @param sone
-        *            The Sone to store the posts for
-        * @param posts
-        *            The posts to store
-        * @throws IllegalArgumentException
-        *             if posts do not all belong to the same Sone
-        */
-       public void storePosts(Sone sone, Collection<Post> posts) throws IllegalArgumentException;
-
-       /**
-        * Removes all posts of the given {@link Sone}
-        *
-        * @param sone
-        *            The Sone to remove all posts for
-        */
-       public void removePosts(Sone sone);
-
 }