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

Commit 004f5f5

Browse files
committed
Removed privates (wince)
1 parent 378136d commit 004f5f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.App/ViewModels/LoggedOutViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public LoggedOutViewModel(IUIProvider uiProvider, IVisualStudioBrowser browser)
4242
/// <summary>
4343
/// Called when the <see cref="SignIn"/> command is executed.
4444
/// </summary>
45-
private void OnSignIn()
45+
void OnSignIn()
4646
{
4747
// Show the Sign In dialog. We don't need to listen to the outcome of this: the parent
4848
// GitHubPaneViewModel will listen to RepositoryHosts.IsLoggedInToAnyHost and close
@@ -54,7 +54,7 @@ private void OnSignIn()
5454
/// <summary>
5555
/// Called when the <see cref="Register"/> command is executed.
5656
/// </summary>
57-
private void OnRegister()
57+
void OnRegister()
5858
{
5959
browser.OpenUrl(GitHubUrls.Pricing);
6060
}

0 commit comments

Comments
 (0)