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

Commit 8fc2e55

Browse files
committed
Removed more privates.
Getting a bit Game of Thrones in here.
1 parent a8e32de commit 8fc2e55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.VisualStudio/UI/Views/Controls/LoginControl.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class GenericLoginControl : SimpleViewUserControl<ILoginControlViewModel,
2424
[PartCreationPolicy(CreationPolicy.NonShared)]
2525
public partial class LoginControl : GenericLoginControl
2626
{
27-
private IDisposable errorHandler;
27+
IDisposable errorHandler;
2828

2929
public LoginControl()
3030
{
@@ -108,7 +108,7 @@ void SetupSelectedAndVisibleTabBindings(Action<IDisposable> d)
108108
.BindTo(this, v => v.enterpriseTab.IsSelected));
109109
}
110110

111-
private void hostTabControl_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
111+
void hostTabControl_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
112112
{
113113
// This is a bit ugly but it's the simplest way I could think of dealing with it: there can only
114114
// be one UserErrorMessages control active at any time and we need one for each tab. Register/unregister

0 commit comments

Comments
 (0)