Skip to content

Commit

Permalink
Remove reference to Navigator view that has been removed
Browse files Browse the repository at this point in the history
The long deprecated for removal navigator view has been removed
from upcoming Eclipse Platform.

I don't know if there are other locations in CDT that are affected,
but this change covers the compilation failure of the removal.

xref: eclipse-platform/eclipse.platform.ui#644
  • Loading branch information
jonahgraham committed Apr 2, 2023
1 parent 5cc606f commit 47275c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/org.eclipse.cdt.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.ui; singleton:=true
Bundle-Version: 8.0.100.qualifier
Bundle-Version: 8.0.200.qualifier
Bundle-Activator: org.eclipse.cdt.ui.CUIPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1568,10 +1568,8 @@ public <T> T getAdapter(Class<T> adapterClass) {
} else if (adapterClass.isAssignableFrom(IShowInTargetList.class)) {
return (T) new IShowInTargetList() {
@Override
@SuppressWarnings("deprecation")
public String[] getShowInTargetIds() {
return new String[] { IPageLayout.ID_PROJECT_EXPLORER, IPageLayout.ID_OUTLINE,
IPageLayout.ID_RES_NAV };
return new String[] { IPageLayout.ID_PROJECT_EXPLORER, IPageLayout.ID_OUTLINE };
}
};
} else if (adapterClass.isAssignableFrom(IShowInSource.class)) {
Expand Down

0 comments on commit 47275c3

Please sign in to comment.