X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2Fimpl%2FPostReplyImpl.java;h=c1a2423faf2429eb490e6c49f3fbe10a94b83d36;hb=8d49fb185ee26853262a12f6d419ef2e39c1116c;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..c1a2423 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,9 @@ 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.Database; import com.google.common.base.Optional; @@ -30,23 +30,26 @@ import com.google.common.base.Optional; */ public class PostReplyImpl extends ReplyImpl implements PostReply { - /** The post provider. */ - private final PostProvider postProvider; - /** The Post this reply refers to. */ - private volatile String postId; + private final String postId; /** * Creates a new reply. * - * @param postProvider - * The post provider + * @param database + * The database * @param id - * The ID of the reply + * 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 */ - public PostReplyImpl(PostProvider postProvider, String id) { - super(id); - this.postProvider = postProvider; + public PostReplyImpl(Database database, String id, String soneId, long time, String text, String postId) { + super(database, id, soneId, time, text); this.postId = postId; } @@ -54,33 +57,16 @@ public class PostReplyImpl extends ReplyImpl implements PostReply { // ACCESSORS // - /** - * {@inheritDocs} - */ + /** {@inheritDocs} */ @Override public String getPostId() { return postId; } - /** - * {@inheritDoc} - */ + /** {@inheritDoc} */ @Override public Optional getPost() { - 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; + return database.getPost(postId); } }