Remove setPosts() from Sone.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 7 Dec 2014 09:52:57 +0000 (10:52 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 7 Dec 2014 09:53:15 +0000 (10:53 +0100)
src/main/java/net/pterodactylus/sone/data/Sone.java
src/main/java/net/pterodactylus/sone/data/impl/IdOnlySone.java
src/main/java/net/pterodactylus/sone/data/impl/SoneImpl.java

index 4bde55b..2f529cb 100644 (file)
@@ -343,15 +343,6 @@ public interface Sone extends Identified, Fingerprintable, Comparable<Sone> {
        List<Post> getPosts();
 
        /**
-        * Sets all posts of this Sone at once.
-        *
-        * @param posts
-        *              The new (and only) posts of this Sone
-        * @return This Sone (for method chaining)
-        */
-       Sone setPosts(Collection<Post> posts);
-
-       /**
         * Adds the given post to this Sone. The post will not be added if its {@link
         * Post#getSone() Sone} is not this Sone.
         *
index 6352c10..ce224fd 100644 (file)
@@ -121,11 +121,6 @@ public class IdOnlySone implements Sone {
        }
 
        @Override
-       public Sone setPosts(Collection<Post> posts) {
-               return this;
-       }
-
-       @Override
        public void addPost(Post post) {
        }
 
index 2479276..eb2fc6e 100644 (file)
@@ -363,17 +363,6 @@ public class SoneImpl implements LocalSone {
        }
 
        /**
-        * Sets all posts of this Sone at once.
-        *
-        * @param posts
-        *              The new (and only) posts of this Sone
-        * @return This Sone (for method chaining)
-        */
-       public Sone setPosts(Collection<Post> posts) {
-               return this;
-       }
-
-       /**
         * Adds the given post to this Sone. The post will not be added if its {@link
         * Post#getSone() Sone} is not this Sone.
         *