Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / internal / lttng2 / ust / core / analysis / debuginfo / FileOffsetMapper.java
index 5acb66c8a93f076bff415a6904d8b8d98ab4886c..838fa727384df6cd2f2c66f373215b87b0c48f30 100644 (file)
@@ -9,8 +9,6 @@
 
 package org.eclipse.tracecompass.internal.lttng2.ust.core.analysis.debuginfo;
 
-import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
-
 import java.io.BufferedReader;
 import java.io.File;
 import java.io.IOException;
@@ -62,8 +60,8 @@ public final class FileOffsetMapper {
         List<TmfCallsite> callsites = new LinkedList<>();
 
         // FIXME Could eventually use CDT's Addr2line class once it imlements --inlines
-        List<String> output = getOutputFromCommand(checkNotNull(Arrays.asList(
-                ADDR2LINE_EXECUTABLE, "-i", "-e", file.toString(), "0x" + Long.toHexString(offset))));  //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
+        List<String> output = getOutputFromCommand(Arrays.asList(
+                ADDR2LINE_EXECUTABLE, "-i", "-e", file.toString(), "0x" + Long.toHexString(offset)));  //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
 
         if (output == null) {
             /* Command returned an error */
This page took 0.025687 seconds and 5 git commands to generate.