X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2Fimpl%2FPostReplyImpl.java;h=e7b662608eff960e4b89a030df1b55dda38871c1;hp=361a2e977bf376abdf2c738ba6586d993ffbfed2;hb=83ceb7c20927ae3cd9eb12d8d885462ac66ea6a4;hpb=fcabe38e9b3abacc0d580bf0513600858aee2eca diff --git a/src/main/java/net/pterodactylus/sone/data/impl/PostReplyImpl.java b/src/main/java/net/pterodactylus/sone/data/impl/PostReplyImpl.java index 361a2e9..e7b6626 100644 --- a/src/main/java/net/pterodactylus/sone/data/impl/PostReplyImpl.java +++ b/src/main/java/net/pterodactylus/sone/data/impl/PostReplyImpl.java @@ -20,6 +20,7 @@ package net.pterodactylus.sone.data.impl; import net.pterodactylus.sone.core.PostProvider; import net.pterodactylus.sone.data.Post; import net.pterodactylus.sone.data.PostReply; +import net.pterodactylus.sone.data.Sone; /** * Simple {@link PostReply} implementation. @@ -32,7 +33,7 @@ public class PostReplyImpl extends ReplyImpl implements PostReply { private final PostProvider postProvider; /** The Post this reply refers to. */ - private volatile String postId; + private final String postId; /** * Creates a new reply. @@ -41,9 +42,17 @@ public class PostReplyImpl extends ReplyImpl implements PostReply { * The post provider * @param id * The ID of the reply + * @param sone + * The Sone of the reply + * @param time + * The time of the reply + * @param text + * The text of the reply + * @param postId + * The ID of the post this reply refers to */ - public PostReplyImpl(PostProvider postProvider, String id) { - super(id); + public PostReplyImpl(PostProvider postProvider, String id, Sone sone, long time, String text, String postId) { + super(id, sone, time, text); this.postProvider = postProvider; this.postId = postId; } @@ -60,17 +69,4 @@ public class PostReplyImpl extends ReplyImpl implements PostReply { return postProvider.getPost(postId); } - /** - * Sets the post this reply refers to. - * - * @param postId - * The ID of the post to reply to - * @return This reply (for method chaining) - */ - @Override - public PostReply setPost(String postId) { - this.postId = postId; - return this; - } - }