We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cd38ad commit 864167eCopy full SHA for 864167e
Rubberduck.Core/UI/Refactorings/ExtractInterface/ExtractInterfaceViewModel.cs
@@ -81,25 +81,6 @@ public ClassInstancing InterfaceInstancing
81
}
82
83
84
- private bool isPublicInterfaceChecked = true;
85
- public bool IsPublicInterfaceChecked
86
- {
87
- get => isPublicInterfaceChecked;
88
- set
89
90
- if (value == isPublicInterfaceChecked)
91
92
- return;
93
- }
94
-
95
- Model.InterfaceInstancing = value
96
- ? ClassInstancing.Public
97
- : ClassInstancing.Private;
98
- isPublicInterfaceChecked = value;
99
- OnPropertyChanged();
100
101
102
103
private void ToggleSelection(bool value)
104
{
105
foreach (var item in Members)
0 commit comments