1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Warnings cleanup.

This commit is contained in:
Pawel Piech 2010-02-12 00:57:47 +00:00
parent dc5ab47300
commit 6241c63438

View file

@ -282,7 +282,7 @@ public class GdbAdapterFactory
/**
* This method only actually returns adapters for the launch object.
*/
@SuppressWarnings("unchecked")
@SuppressWarnings("rawtypes")
public Object getAdapter(Object adaptableObject, Class adapterType) {
if (!(adaptableObject instanceof GdbLaunch)) return null;
@ -321,7 +321,7 @@ public class GdbAdapterFactory
else return null;
}
@SuppressWarnings("unchecked")
@SuppressWarnings("rawtypes")
public Class[] getAdapterList() {
return new Class[] {
IElementContentProvider.class, IModelProxyFactory.class, ISuspendTrigger.class,