mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-21 16:05:25 +02:00
Fixed generics warnings.
This commit is contained in:
parent
fceb61087c
commit
89fca7f409
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ public class NumberFormatDetailPaneFactory implements IDetailPaneFactory {
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#getDetailsTypes(org.eclipse.jface.viewers.IStructuredSelection)
|
* @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#getDetailsTypes(org.eclipse.jface.viewers.IStructuredSelection)
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("rawtypes")
|
||||||
public Set getDetailPaneTypes(IStructuredSelection selection) {
|
public Set getDetailPaneTypes(IStructuredSelection selection) {
|
||||||
Set<String> possibleIDs = new HashSet<String>(1);
|
Set<String> possibleIDs = new HashSet<String>(1);
|
||||||
possibleIDs.add(NumberFormatDetailPane.ID);
|
possibleIDs.add(NumberFormatDetailPane.ID);
|
||||||
|
|
Loading…
Add table
Reference in a new issue