tmf: Consider compilation warnings to be errors in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / ShowNodeEnd.java
index 614a16ab37865b8cca29ae75eb3b8edce9e15947..2d17ab4f1bdd18edc77dc608dcc6d8ccc48a46e6 100755 (executable)
@@ -57,7 +57,6 @@ public class ShowNodeEnd extends BaseSDAction {
     // ------------------------------------------------------------------------
 
     @Override
-    @SuppressWarnings("rawtypes")
     public void run() {
         if (getView() == null) {
             return;
@@ -73,7 +72,7 @@ public class ShowNodeEnd extends BaseSDAction {
         ISelection sel = selProvider.getSelection();
         Object selectedNode = null;
 
-        Iterator it = ((StructuredSelection) sel).iterator();
+        Iterator<Object> it = ((StructuredSelection) sel).iterator();
         while (it.hasNext()) {
             selectedNode = it.next();
         }
This page took 0.024969 seconds and 5 git commands to generate.