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

Commit 3cf7b2a

Browse files
committed
Fix code analysis
1 parent 7cb5669 commit 3cf7b2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.VisualStudio/Base/TeamExplorerBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ public Ret GetService<T, Ret>() where Ret : class
4444
return GetService<T>() as Ret;
4545
}
4646

47-
protected void OpenInBrowser(Lazy<IVisualStudioBrowser> browser, Uri uri)
47+
protected static void OpenInBrowser(Lazy<IVisualStudioBrowser> browser, Uri uri)
4848
{
4949
OpenInBrowser(browser.Value, uri);
5050
}
5151

52-
protected void OpenInBrowser(IVisualStudioBrowser browser, Uri uri)
52+
protected static void OpenInBrowser(IVisualStudioBrowser browser, Uri uri)
5353
{
5454
Debug.Assert(browser != null, "Could not create a browser helper instance.");
5555
browser?.OpenUrl(uri);

0 commit comments

Comments
 (0)