Fix some null warnings
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.kernel.core / src / org / eclipse / tracecompass / internal / lttng2 / kernel / core / analysis / vm / model / VirtualCPU.java
index 66fc0e0f3bcd04df255a0fba2bb5b367662317de..2e2a3be3a6daa644037e67b2c4bf6c069f6513c5 100644 (file)
@@ -26,7 +26,7 @@ import com.google.common.collect.Table;
  */
 public class VirtualCPU {
 
-    private static final Table<VirtualMachine, Long, @Nullable VirtualCPU> VIRTUAL_CPU_TABLE = NonNullUtils.checkNotNull(HashBasedTable.<VirtualMachine, Long, VirtualCPU> create());
+    private static final Table<VirtualMachine, Long, @Nullable VirtualCPU> VIRTUAL_CPU_TABLE = NonNullUtils.checkNotNull(HashBasedTable.create());
 
     private final VirtualMachine fVm;
     private final Long fCpuId;
This page took 0.026111 seconds and 5 git commands to generate.