tmf: Switch tmf.core to Java 7 + fix warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / matching / TmfNetworkEventMatching.java
index f26ac73f8fa3599dae7fd4d2c36240300de8fc93..5e75c7d6cc4c142ed9e927d9f78dbd46a60cadff 100644 (file)
@@ -35,12 +35,12 @@ public class TmfNetworkEventMatching extends TmfEventMatching {
     /**
      * Hashtables for unmatches incoming events
      */
-    private final List<Map<List<Object>, ITmfEvent>> fUnmatchedIn = new ArrayList<Map<List<Object>, ITmfEvent>>();
+    private final List<Map<List<Object>, ITmfEvent>> fUnmatchedIn = new ArrayList<>();
 
     /**
      * Hashtables for unmatches outgoing events
      */
-    private final List<Map<List<Object>, ITmfEvent>> fUnmatchedOut = new ArrayList<Map<List<Object>, ITmfEvent>>();
+    private final List<Map<List<Object>, ITmfEvent>> fUnmatchedOut = new ArrayList<>();
 
     /**
      * Enum for in and out types
This page took 0.024237 seconds and 5 git commands to generate.