File tree Expand file tree Collapse file tree
src/SVNPathCopy.Configuration/ViewModels Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ private async Task InstallShellExtension()
203203 StatusMessage = "Installing shell extension... Please accept the UAC prompt if it appears." ;
204204 IsStatusError = false ;
205205
206- await Task . Run ( ( ) => { _shellExtensionService . Register ( ) ; } ) ;
206+ await Task . Run ( ( ) => _shellExtensionService . Register ( ) ) ;
207207
208208 // Small delay to allow registry to update
209209 await Task . Delay ( 500 ) ;
@@ -265,7 +265,7 @@ private async Task UninstallShellExtension()
265265 StatusMessage = "Uninstalling shell extension... Please accept the UAC prompt if it appears." ;
266266 IsStatusError = false ;
267267
268- await Task . Run ( ( ) => { _shellExtensionService . Unregister ( ) ; } ) ;
268+ await Task . Run ( ( ) => _shellExtensionService . Unregister ( ) ) ;
269269
270270 // Small delay to allow registry to update
271271 await Task . Delay ( 500 ) ;
You can’t perform that action at this time.
0 commit comments