This repository was archived by the owner on Jun 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 77using GitHub . Api ;
88using NullGuard ;
99using GitHub . UI ;
10+ using System . Diagnostics ;
11+ using System . Linq ;
12+ using GitHub . Primitives ;
1013
1114namespace GitHub . VisualStudio
1215{
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public CopyLink([Import(typeof(SVsServiceProvider))] IServiceProvider servicePro
2323 public Guid Guid => GuidList . guidContextMenuSet ;
2424 public int CmdId => PkgCmdIDList . copyLinkCommand ;
2525
26- public async void Activate ( [ AllowNull ] object data = null )
26+ public async void Activate ( )
2727 {
2828 var isgithub = await IsGitHubRepo ( ) ;
2929 if ( ! isgithub )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public OpenLink([Import(typeof(SVsServiceProvider))] IServiceProvider servicePro
2121 public Guid Guid => GuidList . guidContextMenuSet ;
2222 public int CmdId => PkgCmdIDList . openLinkCommand ;
2323
24- public async void Activate ( [ AllowNull ] object data = null )
24+ public async void Activate ( )
2525 {
2626 var isgithub = await IsGitHubRepo ( ) ;
2727 if ( ! isgithub )
You can’t perform that action at this time.
0 commit comments