From f6db1148658649ced42222ccacd385065af9ef05 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Fri, 19 May 2017 15:47:53 +0100 Subject: [PATCH] Remove console writelines --- tests/SharpCompress.Test/ArchiveTests.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/SharpCompress.Test/ArchiveTests.cs b/tests/SharpCompress.Test/ArchiveTests.cs index 14eccee1..b6d63c9f 100644 --- a/tests/SharpCompress.Test/ArchiveTests.cs +++ b/tests/SharpCompress.Test/ArchiveTests.cs @@ -95,9 +95,9 @@ namespace SharpCompress.Test ResetScratch(); using (var archive = ArchiveFactory.Open(path)) { - archive.EntryExtractionBegin += archive_EntryExtractionBegin; - archive.FilePartExtractionBegin += archive_FilePartExtractionBegin; - archive.CompressedBytesRead += archive_CompressedBytesRead; + //archive.EntryExtractionBegin += archive_EntryExtractionBegin; + //archive.FilePartExtractionBegin += archive_FilePartExtractionBegin; + //archive.CompressedBytesRead += archive_CompressedBytesRead; foreach (var entry in archive.Entries.Where(entry => !entry.IsDirectory)) { @@ -157,9 +157,9 @@ namespace SharpCompress.Test using (var archive = ArchiveFactory.Open(path)) { totalSize = archive.TotalUncompressSize; - archive.EntryExtractionBegin += Archive_EntryExtractionBeginEx; - archive.EntryExtractionEnd += Archive_EntryExtractionEndEx; - archive.CompressedBytesRead += Archive_CompressedBytesReadEx; + //archive.EntryExtractionBegin += Archive_EntryExtractionBeginEx; + //archive.EntryExtractionEnd += Archive_EntryExtractionEndEx; + //archive.CompressedBytesRead += Archive_CompressedBytesReadEx; foreach (var entry in archive.Entries.Where(entry => !entry.IsDirectory)) {