X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdatabase%2FReplyBuilder.java;h=8582c83c2d9f081012fb5fbe5004533eb96b4fd7;hb=0483b692e9c43f64a2d04428f474bd726c522ff5;hp=d83e7ce46ca882169d8e502e5b48d92a3e7d7c04;hpb=8f02544d31f323ae9053dd9a11a99eacd8cf5bcd;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/database/ReplyBuilder.java b/src/main/java/net/pterodactylus/sone/database/ReplyBuilder.java index d83e7ce..8582c83 100644 --- a/src/main/java/net/pterodactylus/sone/database/ReplyBuilder.java +++ b/src/main/java/net/pterodactylus/sone/database/ReplyBuilder.java @@ -31,14 +31,6 @@ import net.pterodactylus.sone.data.Sone; public interface ReplyBuilder> { /** - * Configures this builder to use a random ID when creating the reply. If - * this method is used, {@link #withId(String)} must not be used. - * - * @return This builder - */ - public B randomId(); - - /** * Configures this builder to use the given ID when creating the reply. If * this method is used, {@link #randomId()} must not be used. * @@ -49,24 +41,6 @@ public interface ReplyBuilder> { public B withId(String id); /** - * Configures this builder to use the ID of the given {@link Sone} as sender - * of the reply. - * - * @param senderId - * The ID of the sender of the reply - * @return This builder - */ - public B from(String senderId); - - /** - * Configures this builder to use the current time when creating the reply. - * If this method is used, {@link #withTime(long)} must not be used. - * - * @return This builder - */ - public B currentTime(); - - /** * Configures this builder to use the given time when creating the reply. If * this method is used, {@link #currentTime()} must not be used. *