Skip to content

Commit

Permalink
[eclipse-lsp4e#254] Rename class
Browse files Browse the repository at this point in the history
  • Loading branch information
travkin79 committed Aug 13, 2024
1 parent 9cd8be9 commit 930b826
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion org.eclipse.lsp4e/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
allPopups="false"
locationURI="menu:org.eclipse.lsp4e.outline.hideMenu">
<dynamic
class="org.eclipse.lsp4e.outline.OutlineViewFilterMenuContributor"
class="org.eclipse.lsp4e.outline.OutlineViewHideSymbolKindMenuContributor"
id="org.eclipse.lsp4e.filters.dynamic">
</dynamic>
</menuContribution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ protected boolean hideElement(Object element) {
kind = ((SymbolInformation) element).getKind();
}

if (OutlineViewFilterMenuContributor.isHideSymbolKind(kind)) {
if (OutlineViewHideSymbolKindMenuContributor.isHideSymbolKind(kind)) {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import org.eclipse.swt.graphics.Image;
import org.eclipse.ui.actions.CompoundContributionItem;

public class OutlineViewFilterMenuContributor extends CompoundContributionItem {
public class OutlineViewHideSymbolKindMenuContributor extends CompoundContributionItem {

@Override
protected IContributionItem[] getContributionItems() {
Expand Down

0 comments on commit 930b826

Please sign in to comment.