Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / latency / statistics / SystemCallLatencyStatisticsView.java
index 9aca6e8a6221b7601eeda4cbcf85f2a3aeac8de0..daf9f9e3d05e53c8c850cd52a0f54d72adb6c75c 100644 (file)
@@ -11,8 +11,6 @@
  *******************************************************************************/
 package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency.statistics;
 
-import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
-
 import org.eclipse.swt.widgets.Composite;
 import org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.statistics.AbstractSegmentStoreStatisticsView;
 import org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.statistics.AbstractSegmentStoreStatisticsViewer;
@@ -30,7 +28,7 @@ public class SystemCallLatencyStatisticsView extends AbstractSegmentStoreStatist
 
     @Override
     protected AbstractSegmentStoreStatisticsViewer createSegmentStoreStatisticsViewer(Composite parent) {
-        return checkNotNull((AbstractSegmentStoreStatisticsViewer) new SystemCallLatencyStatisticsViewer(checkNotNull(parent)));
+        return new SystemCallLatencyStatisticsViewer(parent);
     }
 
 }
This page took 0.027204 seconds and 5 git commands to generate.