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

Commit b763be7

Browse files
Merge branch 'enhancements/async-git-setup' into enhancements/git-setup-download
2 parents 90965ea + db6a62c commit b763be7

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/GitHub.Api/Application/ApplicationManagerBase.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ public void Run(bool firstRun)
5151
var afterGitSetup = new ActionTask(CancellationToken, RestartRepository)
5252
.ThenInUI(InitializeUI);
5353

54-
Logger.Trace("afterGitSetup");
55-
5654
var windowsCredentialSetup = new ActionTask(CancellationToken, () => {
5755
GitClient.GetConfig("credential.helper", GitConfigSource.Global).Then((b, credentialHelper) => {
5856
if (!string.IsNullOrEmpty(credentialHelper))
@@ -70,8 +68,6 @@ public void Run(bool firstRun)
7068
}).Start();
7169
});
7270

73-
Logger.Trace("windowsCredentialSetup");
74-
7571
var afterPathDetermined = new ActionTask<NPath>(CancellationToken, (b1, path) => {
7672

7773
Logger.Trace("Setting Environment git path: {0}", path);
@@ -91,8 +87,6 @@ public void Run(bool firstRun)
9187
}
9288
});
9389

94-
Logger.Trace("afterPathDetermined");
95-
9690
var applicationDataPath = Environment.GetSpecialFolder(System.Environment.SpecialFolder.LocalApplicationData).ToNPath();
9791
var installDetails = new GitInstallDetails(applicationDataPath, true);
9892

0 commit comments

Comments
 (0)