From f47100e940dfc35440b923ad1aab564decfed356 Mon Sep 17 00:00:00 2001 From: Eveldee Date: Sat, 20 Jul 2019 16:08:06 +0200 Subject: [PATCH] Fix style issue --- DearFTP/FtpServer.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/DearFTP/FtpServer.cs b/DearFTP/FtpServer.cs index 039da47..76f2658 100644 --- a/DearFTP/FtpServer.cs +++ b/DearFTP/FtpServer.cs @@ -40,9 +40,7 @@ namespace DearFTP Logger.Log("DearFTP started"); Logger.Log(); - int implicitFtpsPort = Configuration.Server.ImplicitFtpsPort; - - if (implicitFtpsPort != 0) + if (Configuration.Server.ImplicitFtpsPort != 0) { Task.Run(() => FtpsTcpLoop()); }