🔀 Merge branch 'release/v82'
[Sone.git] / src / main / java / net / pterodactylus / sone / data / PostReply.java
index 8dc6f93..6db3876 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - PostReply.java - Copyright Â© 2010–2013 David Roden
+ * Sone - PostReply.java - Copyright Â© 2010–2020 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
 
 package net.pterodactylus.sone.data;
 
+import com.google.common.base.Optional;
+
 /**
  * A reply is like a {@link Post} but can never be posted on its own, it always
  * refers to another {@link Post}.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David â€˜Bombe’ Roden</a>
  */
 public interface PostReply extends Reply<PostReply> {
 
@@ -37,15 +37,6 @@ public interface PostReply extends Reply<PostReply> {
         *
         * @return The post this reply refers to
         */
-       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);
+       public Optional<Post> getPost();
 
 }