From 423839518d5751777eeb4b19b001aa547209124a Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Fri, 16 Oct 2015 08:28:10 +0200 Subject: [PATCH] Move method to a more sensible place --- .../fcp/quelaton/DefaultFcpClientTest.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/test/java/net/pterodactylus/fcp/quelaton/DefaultFcpClientTest.java b/src/test/java/net/pterodactylus/fcp/quelaton/DefaultFcpClientTest.java index f238d5a..d0ae0e5 100644 --- a/src/test/java/net/pterodactylus/fcp/quelaton/DefaultFcpClientTest.java +++ b/src/test/java/net/pterodactylus/fcp/quelaton/DefaultFcpClientTest.java @@ -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 { -- 2.7.4