Run CSharpier formatting and document check-format process

Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-19 13:31:35 +00:00
parent 2f0eb0bd4b
commit c701bbbee3
2 changed files with 28 additions and 18 deletions

View File

@@ -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));
}
}
}