Skip to content

Commit fb5f08f

Browse files
committed
remove decommissioned window menu item commands
1 parent a8b847b commit fb5f08f

File tree

4 files changed

+0
-39
lines changed

4 files changed

+0
-39
lines changed

Rubberduck.Core/UI/Command/MenuItems/FindAllImplementationsCommandMenuItem.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,4 @@ public ProjectExplorerFindAllImplementationsCommandMenuItem(ProjectExplorerFindA
3535

3636
public override int DisplayOrder => (int)ProjectExplorerContextMenuItemDisplayOrder.FindAllImplementations;
3737
}
38-
39-
public class WindowsFindAllImplementationsCommandMenuItem : FindAllImplementationsCommandMenuItemBase
40-
{
41-
public WindowsFindAllImplementationsCommandMenuItem(ProjectExplorerFindAllImplementationsCommand command)
42-
: base(command)
43-
{ }
44-
45-
public override int DisplayOrder => (int)WindowMenuItemDisplayOrder.FindAllImplementations;
46-
}
4738
}

Rubberduck.Core/UI/Command/MenuItems/FindAllReferencesCommandMenuItem.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,4 @@ public ProjectExplorerFindAllReferencesCommandMenuItem(ProjectExplorerFindAllRef
3737

3838
public override int DisplayOrder => (int)ProjectExplorerContextMenuItemDisplayOrder.FindAllReferences;
3939
}
40-
41-
42-
public class WindowsFindAllReferencesCommandMenuItem : FindAllReferencesCommandMenuItemBase
43-
{
44-
public WindowsFindAllReferencesCommandMenuItem(ProjectExplorerFindAllReferencesCommand command)
45-
: base(command)
46-
{ }
47-
48-
public override int DisplayOrder => (int)WindowMenuItemDisplayOrder.FindAllReferences;
49-
}
50-
5140
}

Rubberduck.Core/UI/Command/MenuItems/FindSymbolCommandMenuItem.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,4 @@ public ProjectExplorerFindSymbolCommandMenuItem(FindSymbolCommand command)
3838

3939
public override int DisplayOrder => (int)ProjectExplorerContextMenuItemDisplayOrder.FindSymbol;
4040
}
41-
42-
public class WindowsFindSymbolCommandMenuItem : FindSymbolCommandMenuItemBase
43-
{
44-
public WindowsFindSymbolCommandMenuItem(FindSymbolCommand command)
45-
: base(command)
46-
{ }
47-
48-
public override int DisplayOrder => (int)WindowMenuItemDisplayOrder.FindSymbol;
49-
}
5041
}

Rubberduck.Core/UI/Command/MenuItems/InspectionResultsCommandMenuItem.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,4 @@ public InspectionResultsCommandMenuItem(InspectionResultsCommand command)
1313
public override string Key => "RubberduckMenu_CodeInspections";
1414
public override int DisplayOrder => (int)RubberduckMenuItemDisplayOrder.CodeInspections;
1515
}
16-
17-
18-
public class WindowsInspectionResultsCommandMenuItem : InspectionResultsCommandMenuItem
19-
{
20-
public WindowsInspectionResultsCommandMenuItem(InspectionResultsCommand command)
21-
: base(command)
22-
{ }
23-
24-
public override int DisplayOrder => (int)WindowMenuItemDisplayOrder.CodeInspections;
25-
}
2616
}

0 commit comments

Comments
 (0)