Fixes the last (?) warning in LTTng stuff
authorWilliam Bourque <william.bourque@polymtl.ca>
Wed, 12 May 2010 18:02:27 +0000 (18:02 +0000)
committerWilliam Bourque <william.bourque@polymtl.ca>
Wed, 12 May 2010 18:02:27 +0000 (18:02 +0000)
org.eclipse.linuxtools.lttng.ui/src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/ImportTraceWizard.java

index 77dd476c0a4e8bfcf4adbd42825828b5c6d7b73d..3a2179999a7c5c118c87a27cf60538401700819e 100644 (file)
@@ -64,12 +64,11 @@ public class ImportTraceWizard extends Wizard implements IImportWizard {
     /* (non-Javadoc)
      * @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)
      */
-       @SuppressWarnings("rawtypes")
        public void init(IWorkbench workbench, IStructuredSelection selection) {
         fWorkbench = workbench;
         fSelection = selection;
 
-        List selectedResources = IDE.computeSelectedResources(selection);
+        List<?> selectedResources = IDE.computeSelectedResources(selection);
         if (!selectedResources.isEmpty()) {
             fSelection = new StructuredSelection(selectedResources);
         }
This page took 0.024483 seconds and 5 git commands to generate.