From 5912d205d30352d912b3ca944ff8573aa07182cc Mon Sep 17 00:00:00 2001 From: Marco Antognini Date: Tue, 27 May 2014 09:29:12 +0200 Subject: [PATCH] Removed a dead store in sf::Ftp implementation --- src/SFML/Network/Ftp.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/SFML/Network/Ftp.cpp b/src/SFML/Network/Ftp.cpp index 51553543a..e847e780c 100644 --- a/src/SFML/Network/Ftp.cpp +++ b/src/SFML/Network/Ftp.cpp @@ -438,9 +438,6 @@ Ftp::Response Ftp::getResponse() // we haven't reached the end of the multiline response if ((separator != '-') && ((code == lastCode) || (lastCode == 0))) { - // Clear the multiline flag - isInsideMultiline = false; - // Extract the line std::string line; std::getline(in, line);