From 409160b8f993fd0f677895d5d805a7a933e7414d Mon Sep 17 00:00:00 2001 From: Dean Ellis Date: Fri, 1 Jul 2016 11:04:33 +0100 Subject: [PATCH] Removed some Console.WriteLine calls that were not needed. --- ExtraField_InfoZipUnix3rdGeneration.cs | 4 ---- UnixPlatformServices.cs | 8 -------- 2 files changed, 12 deletions(-) diff --git a/ExtraField_InfoZipUnix3rdGeneration.cs b/ExtraField_InfoZipUnix3rdGeneration.cs index 1d921c53..47456458 100644 --- a/ExtraField_InfoZipUnix3rdGeneration.cs +++ b/ExtraField_InfoZipUnix3rdGeneration.cs @@ -52,11 +52,9 @@ protected override void Parse () DataValid = false; byte [] data = RawData; - Console.WriteLine ($" 3rd gen length == {data?.Length}"); if (data?.Length < 5) return; - Console.WriteLine ($" 3rd gen version == {data [0]}"); if (data [0] > 1) // version return; @@ -64,14 +62,12 @@ protected override void Parse () byte size = data [1]; int index = 2; if (GetID (size, index, data, out id)) { - Console.WriteLine ($" UID == {id}"); UID = id; } index += size; size = data [index++]; if (GetID (size, index, data, out id)) { - Console.WriteLine ($" GID == {id}"); GID = id; } diff --git a/UnixPlatformServices.cs b/UnixPlatformServices.cs index d0aa9649..7c115090 100644 --- a/UnixPlatformServices.cs +++ b/UnixPlatformServices.cs @@ -119,7 +119,6 @@ void SetIDS (IList fields, UnixZipEntry entry, Func