mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-23 23:45:14 +00:00
Run CSharpier formatting and document check-format process
Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
This commit is contained in:
@@ -88,13 +88,7 @@ public static class IArchiveExtensions
|
||||
|
||||
// Update progress
|
||||
bytesRead += entry.Size;
|
||||
progress?.Report(
|
||||
new ProgressReport(
|
||||
entry.Key ?? string.Empty,
|
||||
bytesRead,
|
||||
totalBytes
|
||||
)
|
||||
);
|
||||
progress?.Report(new ProgressReport(entry.Key ?? string.Empty, bytesRead, totalBytes));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -149,13 +143,7 @@ public static class IArchiveExtensions
|
||||
|
||||
// Update progress
|
||||
bytesRead += entry.Size;
|
||||
progress?.Report(
|
||||
new ProgressReport(
|
||||
entry.Key ?? string.Empty,
|
||||
bytesRead,
|
||||
totalBytes
|
||||
)
|
||||
);
|
||||
progress?.Report(new ProgressReport(entry.Key ?? string.Empty, bytesRead, totalBytes));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user