mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-30 12:25:35 +02:00
Fixed warning
This commit is contained in:
parent
494889cad8
commit
600e524d6c
4 changed files with 3 additions and 5 deletions
|
@ -11,7 +11,7 @@ Require-Bundle: org.eclipse.debug.core,
|
|||
org.eclipse.jface,
|
||||
org.eclipse.ui,
|
||||
org.eclipse.search;bundle-version="3.4.0"
|
||||
Eclipse-LazyStart: true
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-Activator: org.eclipse.cdt.debug.ui.memory.traditional.TraditionalRenderingPlugin
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.5
|
||||
|
|
|
@ -15,6 +15,5 @@ bin.includes = META-INF/,\
|
|||
plugin.properties,\
|
||||
.,\
|
||||
plugin.xml,\
|
||||
about.html,\
|
||||
icons/
|
||||
about.html
|
||||
src.includes = about.html
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
category="org.eclipse.cdt.debug.ui.CDebugPreferencePage"
|
||||
class="org.eclipse.cdt.debug.ui.memory.traditional.TraditionalRenderingPreferencePage"
|
||||
id="org.eclipse.cdt.debug.ui.memory.traditional.TraditionalRenderingPreferencePage"
|
||||
helpContextId="TraditionalRenderingPreferencePage_context"
|
||||
name="%page.name"/>
|
||||
</extension>
|
||||
<extension
|
||||
|
|
|
@ -1192,7 +1192,7 @@ public class TraditionalRendering extends AbstractMemoryRendering implements IRe
|
|||
/* (non-Javadoc)
|
||||
* @see org.eclipse.core.runtime.PlatformObject#getAdapter(java.lang.Class)
|
||||
*/
|
||||
@SuppressWarnings({ "unchecked" })
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Object getAdapter(Class adapter)
|
||||
{
|
||||
if(adapter == IWorkbenchAdapter.class)
|
||||
|
|
Loading…
Add table
Reference in a new issue