X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2Fimpl%2FPostReplyImpl.java;h=30badf736cb4f940724134648010adc5bc32ae35;hb=1bc68398c8912a992d87087b79ad9bbea8964c76;hp=fdedaa0a6c94b5046a1c3ac2aaa30e3ce801e733;hpb=9e8b1de83b5791778788406edbba9ed6d256a63f;p=Sone.git 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 fdedaa0..30badf7 100644 --- a/src/main/java/net/pterodactylus/sone/data/impl/PostReplyImpl.java +++ b/src/main/java/net/pterodactylus/sone/data/impl/PostReplyImpl.java @@ -17,9 +17,10 @@ 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.database.PostProvider; +import net.pterodactylus.sone.database.SoneProvider; import com.google.common.base.Optional; @@ -34,18 +35,28 @@ 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. * + * @param soneProvider + * The Sone provider * @param postProvider * The post provider * @param id * The ID of the reply + * @param soneId + * The ID of 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(SoneProvider soneProvider, PostProvider postProvider, String id, String soneId, long time, String text, String postId) { + super(soneProvider, id, soneId, time, text); this.postProvider = postProvider; this.postId = postId; } @@ -70,17 +81,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; - } - }