From c35c216c784a4f260d746b406304d9538288fd26 Mon Sep 17 00:00:00 2001 From: szporowolik Date: Sun, 20 Oct 2019 13:34:23 +0200 Subject: [PATCH] Code cleanup --- 02_Windows_App/Perun_v1/01_Classes/LogController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/02_Windows_App/Perun_v1/01_Classes/LogController.cs b/02_Windows_App/Perun_v1/01_Classes/LogController.cs index 238f82d..410957b 100644 --- a/02_Windows_App/Perun_v1/01_Classes/LogController.cs +++ b/02_Windows_App/Perun_v1/01_Classes/LogController.cs @@ -7,7 +7,7 @@ using System.Threading.Tasks; class LogController { - // TBD - via https://stackoverflow.com/questions/20185015/how-to-write-log-file-in-c + // TBD - done via https://stackoverflow.com/questions/20185015/how-to-write-log-file-in-c public static void WriteLog(string strLog) { StreamWriter log; @@ -32,7 +32,7 @@ class LogController } catch { - + // Do nothing } } try @@ -43,7 +43,7 @@ class LogController } catch { - + // Do nothing } } }