Fix some null warnings
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / latency / statistics / SystemCallLatencyStatisticsViewer.java
index 8150672c5beabb6d3784d9b4c4c339af43dcaac5..397c0851480b2eec6ca7594c4bf47f6d87aae3b0 100644 (file)
@@ -89,7 +89,7 @@ public class SystemCallLatencyStatisticsViewer extends AbstractSegmentStoreStati
             Iterator<Entry<String, SegmentStoreStatistics>> stats = perSyscallStats.entrySet().iterator();
             while (stats.hasNext()) {
                 Entry<String, SegmentStoreStatistics> statsEntry = stats.next();
-                syscalls.addChild(new SegmentStoreStatisticsEntry(checkNotNull(statsEntry.getKey()), checkNotNull(statsEntry.getValue())));
+                syscalls.addChild(new SegmentStoreStatisticsEntry(statsEntry.getKey(), statsEntry.getValue()));
             }
         }
         return root;
This page took 0.03447 seconds and 5 git commands to generate.