Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui.tests / stubs / org / eclipse / tracecompass / internal / lttng2 / control / stubs / shells / LTTngToolsFileShell.java
index 676675923e215ffd14b464761ce127a9fc8f1521..ebcd00e29db329ecb4dcf55b7f2ba943802b04d5 100644 (file)
@@ -239,8 +239,8 @@ public class LTTngToolsFileShell extends TestCommandShell {
                             // Save output/result in command map
                             if (output != null && errorOutput != null) {
                                 commandMap.put(input, createCommandResult(result,
-                                        checkNotNull(output.toArray(new @NonNull String[output.size()])),
-                                        checkNotNull(errorOutput.toArray(new @NonNull String[errorOutput.size()]))));
+                                        output.toArray(new @NonNull String[output.size()]),
+                                        errorOutput.toArray(new @NonNull String[errorOutput.size()])));
                             }
                             inOutput = false;
                         } else if (OUTPUT_KEY.equals(strLine)) {
This page took 0.027184 seconds and 5 git commands to generate.