Remove unused interface
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Mon, 13 Jul 2015 16:21:27 +0000 (18:21 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Mon, 13 Jul 2015 16:21:27 +0000 (18:21 +0200)
src/main/java/net/pterodactylus/fcp/quelaton/WithFile.java [deleted file]

diff --git a/src/main/java/net/pterodactylus/fcp/quelaton/WithFile.java b/src/main/java/net/pterodactylus/fcp/quelaton/WithFile.java
deleted file mode 100644 (file)
index 85af12a..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-package net.pterodactylus.fcp.quelaton;
-
-import java.io.File;
-
-/**
- * An intermediary interface for FCP commands that require a file parameter.
- *
- * @param <R>
- *     The type of the next command part
- * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
- */
-public interface WithFile<R> {
-
-       R withFile(File file);
-
-}