X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdatabase%2FReplyBuilder.java;h=8582c83c2d9f081012fb5fbe5004533eb96b4fd7;hb=72407829d504a0444aadd09cc937bae10b6cb866;hp=d83e7ce46ca882169d8e502e5b48d92a3e7d7c04;hpb=6f019de1d4d9742981d851ac3c9097cca8bff58e;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. *