X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FPostReply.java;h=4452e2eff1f638b6711d71b44d1df16668b36fe2;hp=a4d9ef395ac57ed2b6fd8ad1c4a713b34bd34228;hb=fcabe38e9b3abacc0d580bf0513600858aee2eca;hpb=7d4bd03ba4bbaf451e04d2060a2e87068ef1e302 diff --git a/src/main/java/net/pterodactylus/sone/data/PostReply.java b/src/main/java/net/pterodactylus/sone/data/PostReply.java index a4d9ef3..4452e2e 100644 --- a/src/main/java/net/pterodactylus/sone/data/PostReply.java +++ b/src/main/java/net/pterodactylus/sone/data/PostReply.java @@ -35,10 +35,10 @@ public interface PostReply extends Reply { /** * 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); }