From edab56e27daebd6d97cf72c775e06d5b68e432c3 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Wed, 18 Dec 2019 12:33:41 +0100 Subject: [PATCH] pulizia commenti --- IOB-WIN/IobGeneric.cs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/IOB-WIN/IobGeneric.cs b/IOB-WIN/IobGeneric.cs index 74451d1d..5b97e8f9 100644 --- a/IOB-WIN/IobGeneric.cs +++ b/IOB-WIN/IobGeneric.cs @@ -2810,9 +2810,6 @@ namespace IOB_WIN { // recupero ed aggiorno ULTIMO valore... QueueIN.TryDequeue(out lastSignInVal); -#if false - lastSignInVal = QueueIN.Dequeue(); -#endif // se ERA online provo if (MPOnline) { @@ -2858,7 +2855,6 @@ namespace IOB_WIN { if (MPOnline) { - // se ho + di 2 elementi in coda --> uso invio JSON in blocco... if (QueueFLog.Count > 1) { @@ -2872,9 +2868,6 @@ namespace IOB_WIN { QueueFLog.TryDequeue(out currVal); listaValori.Add(currVal); -#if false - listaValori.Add(QueueFLog.Dequeue()); -#endif } sendDataBlock(urlType.FLog, listaValori); } @@ -2886,9 +2879,6 @@ namespace IOB_WIN sendDataBlock(urlType.FLog, listaValori); // svuoto! QueueFLog = new ConcurrentQueue(); -#if false - QueueFLog.Clear(); -#endif } } else @@ -2897,9 +2887,6 @@ namespace IOB_WIN string currVal = ""; QueueFLog.TryDequeue(out currVal); sendToMoonPro(urlType.FLog, currVal); -#if false - sendToMoonPro(urlType.FLog, QueueFLog.Dequeue()); -#endif } } else