Make replies (more or less) immutable after creation.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / PostReply.java
index 4452e2e..3dd0a14 100644 (file)
@@ -32,13 +32,4 @@ public interface PostReply extends Reply<PostReply> {
         */
        public Post getPost();
 
-       /**
-        * Sets the post this reply refers to.
-        *
-        * @param postId
-        *            The ID of the post to reply to
-        * @return This reply
-        */
-       public PostReply setPost(String postId);
-
 }