common: Annotate HashBasedTable.create()
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.kernel.core / src / org / eclipse / tracecompass / internal / lttng2 / kernel / core / analysis / graph / model / LttngSystemModel.java
index 5bb46fe9d6cde3b3c55a24dc846d9fd572608c5b..6d553fa934dea016fb684a4a2a5862a4ec997f35 100644 (file)
@@ -34,8 +34,8 @@ import com.google.common.collect.Table;
  */
 public class LttngSystemModel {
 
-    private final Table<String, Integer, HostThread> fCurrentTids = NonNullUtils.checkNotNull(HashBasedTable.create());
-    private final Table<String, Integer, Stack<LttngInterruptContext>> fIntCtxStacks = NonNullUtils.checkNotNull(HashBasedTable.create());
+    private final Table<String, Integer, HostThread> fCurrentTids = HashBasedTable.create();
+    private final Table<String, Integer, Stack<LttngInterruptContext>> fIntCtxStacks = HashBasedTable.create();
     private final Map<HostThread, LttngWorker> fWorkerMap = new HashMap<>();
 
     /**
This page took 0.028927 seconds and 5 git commands to generate.