Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit d3228ab

Browse files
committed
Remove unused field gitHubContextService
Remove gitHubContextService from OpenFromUrlCommand.
1 parent 999e41b commit d3228ab

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/GitHub.VisualStudio/Commands/OpenFromUrlCommand.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ namespace GitHub.VisualStudio.Commands
1111
public class OpenFromUrlCommand : VsCommand<string>, IOpenFromUrlCommand
1212
{
1313
readonly Lazy<IDialogService> dialogService;
14-
readonly Lazy<IGitHubContextService> gitHubContextService;
1514
readonly Lazy<IRepositoryCloneService> repositoryCloneService;
1615

1716
/// <summary>
@@ -27,12 +26,10 @@ public class OpenFromUrlCommand : VsCommand<string>, IOpenFromUrlCommand
2726
[ImportingConstructor]
2827
public OpenFromUrlCommand(
2928
Lazy<IDialogService> dialogService,
30-
Lazy<IGitHubContextService> gitHubContextService,
3129
Lazy<IRepositoryCloneService> repositoryCloneService) :
3230
base(CommandSet, CommandId)
3331
{
3432
this.dialogService = dialogService;
35-
this.gitHubContextService = gitHubContextService;
3633
this.repositoryCloneService = repositoryCloneService;
3734

3835
// See https://code.msdn.microsoft.com/windowsdesktop/AllowParams-2005-9442298f

0 commit comments

Comments
 (0)