Skip to content

Commit 864167e

Browse files
committed
Remove unused code
1 parent 7cd38ad commit 864167e

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

Rubberduck.Core/UI/Refactorings/ExtractInterface/ExtractInterfaceViewModel.cs

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -81,25 +81,6 @@ public ClassInstancing InterfaceInstancing
8181
}
8282
}
8383

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-
10384
private void ToggleSelection(bool value)
10485
{
10586
foreach (var item in Members)

0 commit comments

Comments
 (0)