Skip to content

Commit e615033

Browse files
Copilotbrianrob
andcommitted
Remove redundant namespace qualification in ZipFile usage
Co-authored-by: brianrob <[email protected]>
1 parent bf49b7d commit e615033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TraceEvent/TraceEvent.Tests/Regression/RecursiveCallTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public void RecursiveCallsWithMutableTraceEventStackSource()
173173
try
174174
{
175175
// Extract the nettrace file
176-
using (var archive = System.IO.Compression.ZipFile.OpenRead(zipFile))
176+
using (var archive = ZipFile.OpenRead(zipFile))
177177
{
178178
var entry = archive.Entries.First(e => e.Name.EndsWith(".nettrace"));
179179
entry.ExtractToFile(unzippedFile, true);

0 commit comments

Comments
 (0)