X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ffcp%2Fquelaton%2FClientGetCommand.java;h=01f88e9be8e5315f7a0a37cbe6d38f4fd9ffe2d6;hb=ebede056b159ea34d294f3fac0e2def790454a48;hp=60a46d0539573fd42ccaefd94984d0d7145a0c7c;hpb=b1cb058f5ab875ad39b1d8d506cb6019d28118b7;p=jFCPlib.git diff --git a/src/main/java/net/pterodactylus/fcp/quelaton/ClientGetCommand.java b/src/main/java/net/pterodactylus/fcp/quelaton/ClientGetCommand.java index 60a46d0..01f88e9 100644 --- a/src/main/java/net/pterodactylus/fcp/quelaton/ClientGetCommand.java +++ b/src/main/java/net/pterodactylus/fcp/quelaton/ClientGetCommand.java @@ -2,7 +2,6 @@ package net.pterodactylus.fcp.quelaton; import java.io.InputStream; import java.util.Optional; -import java.util.concurrent.Future; import net.pterodactylus.fcp.Priority; @@ -13,7 +12,6 @@ import net.pterodactylus.fcp.Priority; */ public interface ClientGetCommand { - ClientGetCommand identifier(String identifier); ClientGetCommand ignoreDataStore(); ClientGetCommand dataStoreOnly(); ClientGetCommand maxSize(long maxSize); @@ -21,7 +19,7 @@ public interface ClientGetCommand { ClientGetCommand realTime(); ClientGetCommand global(); - Future> uri(String uri); + Executable> uri(String uri); interface Data {