Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit c2274a5

Browse files
Removing extra logging instance
1 parent 3831d92 commit c2274a5

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/GitHub.Api/Installer/UnzipTask.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@ namespace GitHub.Unity
66
{
77
class UnzipTask: TaskBase
88
{
9-
protected static ILogging Logger { get; } = Logging.GetLogger<UnzipTask>();
10-
11-
private string archiveFilePath;
12-
private string extractedPath;
13-
private IProgress<float> zipFileProgress;
14-
private IProgress<long> estimatedDurationProgress;
9+
private readonly string archiveFilePath;
10+
private readonly string extractedPath;
11+
private readonly IProgress<float> zipFileProgress;
12+
private readonly IProgress<long> estimatedDurationProgress;
1513

1614
public UnzipTask(CancellationToken token, string archiveFilePath, string extractedPath, IProgress<float> zipFileProgress = null, IProgress<long> estimatedDurationProgress = null)
1715
: base(token)

0 commit comments

Comments
 (0)