1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-20 15:35:24 +02:00

Fixed generics warnings.

This commit is contained in:
Pawel Piech 2010-01-11 22:10:01 +00:00
parent fceb61087c
commit 89fca7f409

View file

@ -34,7 +34,7 @@ public class NumberFormatDetailPaneFactory implements IDetailPaneFactory {
/* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#getDetailsTypes(org.eclipse.jface.viewers.IStructuredSelection)
*/
@SuppressWarnings("unchecked")
@SuppressWarnings("rawtypes")
public Set getDetailPaneTypes(IStructuredSelection selection) {
Set<String> possibleIDs = new HashSet<String>(1);
possibleIDs.add(NumberFormatDetailPane.ID);