Only store the post ID in the reply.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / PostReply.java
index a4d9ef3..4452e2e 100644 (file)
@@ -35,10 +35,10 @@ public interface PostReply extends Reply<PostReply> {
        /**
         * Sets the post this reply refers to.
         *
-        * @param post
-        *            The post this reply refers to
+        * @param postId
+        *            The ID of the post to reply to
         * @return This reply
         */
-       public PostReply setPost(Post post);
+       public PostReply setPost(String postId);
 
 }