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