Move method to a more sensible place
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Fri, 16 Oct 2015 06:28:10 +0000 (08:28 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Fri, 16 Oct 2015 06:28:10 +0000 (08:28 +0200)
src/test/java/net/pterodactylus/fcp/quelaton/DefaultFcpClientTest.java

index f238d5a..d0ae0e5 100644 (file)
@@ -1528,15 +1528,6 @@ public class DefaultFcpClientTest {
 
                        }
 
-                       private void replyWithPutSuccessful(String identifier) throws IOException {
-                               fcpServer.writeLine(
-                                       "PutSuccessful",
-                                       "URI=KSK@foo.txt",
-                                       "Identifier=" + identifier,
-                                       "EndMessage"
-                               );
-                       }
-
                        private void replyWithPutFailed(String identifier) throws IOException {
                                fcpServer.writeLine(
                                        "PutFailed",
@@ -1651,6 +1642,15 @@ public class DefaultFcpClientTest {
 
                }
 
+               private void replyWithPutSuccessful(String identifier) throws IOException {
+                       fcpServer.writeLine(
+                               "PutSuccessful",
+                               "URI=KSK@foo.txt",
+                               "Identifier=" + identifier,
+                               "EndMessage"
+                       );
+               }
+
                private void replyWithSimpleProgress(
                        int total, int required, int failed, int fatallyFailed, int succeeded, int lastProgress,
                        boolean finalizedTotal, int minSuccessFetchBlocks) throws IOException {