This repository was archived by the owner on Dec 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
src/GitHub.Api/Application Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,6 @@ public void Run(bool firstRun)
51
51
var afterGitSetup = new ActionTask ( CancellationToken , RestartRepository )
52
52
. ThenInUI ( InitializeUI ) ;
53
53
54
- Logger . Trace ( "afterGitSetup" ) ;
55
-
56
54
var windowsCredentialSetup = new ActionTask ( CancellationToken , ( ) => {
57
55
GitClient . GetConfig ( "credential.helper" , GitConfigSource . Global ) . Then ( ( b , credentialHelper ) => {
58
56
if ( ! string . IsNullOrEmpty ( credentialHelper ) )
@@ -70,8 +68,6 @@ public void Run(bool firstRun)
70
68
} ) . Start ( ) ;
71
69
} ) ;
72
70
73
- Logger . Trace ( "windowsCredentialSetup" ) ;
74
-
75
71
var afterPathDetermined = new ActionTask < NPath > ( CancellationToken , ( b1 , path ) => {
76
72
77
73
Logger . Trace ( "Setting Environment git path: {0}" , path ) ;
@@ -91,8 +87,6 @@ public void Run(bool firstRun)
91
87
}
92
88
} ) ;
93
89
94
- Logger . Trace ( "afterPathDetermined" ) ;
95
-
96
90
var applicationDataPath = Environment . GetSpecialFolder ( System . Environment . SpecialFolder . LocalApplicationData ) . ToNPath ( ) ;
97
91
var installDetails = new GitInstallDetails ( applicationDataPath , true ) ;
98
92
You can’t perform that action at this time.
0 commit comments