File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/org/eclipse/lsp4e/outline Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 299
299
allPopups =" false"
300
300
locationURI =" menu:org.eclipse.lsp4e.outline.hideMenu" >
301
301
<dynamic
302
- class =" org.eclipse.lsp4e.outline.OutlineViewFilterMenuContributor "
302
+ class =" org.eclipse.lsp4e.outline.OutlineViewHideSymbolKindMenuContributor "
303
303
id =" org.eclipse.lsp4e.filters.dynamic" >
304
304
</dynamic >
305
305
</menuContribution >
Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ protected boolean hideElement(Object element) {
363
363
kind = ((SymbolInformation ) element ).getKind ();
364
364
}
365
365
366
- if (OutlineViewFilterMenuContributor .isHideSymbolKind (kind )) {
366
+ if (OutlineViewHideSymbolKindMenuContributor .isHideSymbolKind (kind )) {
367
367
return true ;
368
368
}
369
369
Original file line number Diff line number Diff line change 27
27
import org .eclipse .swt .graphics .Image ;
28
28
import org .eclipse .ui .actions .CompoundContributionItem ;
29
29
30
- public class OutlineViewFilterMenuContributor extends CompoundContributionItem {
30
+ public class OutlineViewHideSymbolKindMenuContributor extends CompoundContributionItem {
31
31
32
32
@ Override
33
33
protected IContributionItem [] getContributionItems () {
You can’t perform that action at this time.
0 commit comments