Fix some null warnings
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.graph.core / src / org / eclipse / tracecompass / analysis / graph / core / base / TmfGraph.java
index 715859b6904aa2920ffc97e1e43ddfa75cb0d433..561e0c5fd80f76aab183446112ffe7d699737154 100644 (file)
@@ -54,7 +54,7 @@ public class TmfGraph {
      * Constructor
      */
     public TmfGraph() {
-        fNodeMap = NonNullUtils.checkNotNull(ArrayListMultimap.<IGraphWorker, TmfVertex> create());
+        fNodeMap = NonNullUtils.checkNotNull(ArrayListMultimap.create());
         fReverse = new HashMap<>();
     }
 
This page took 0.024677 seconds and 5 git commands to generate.