Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / lttng2 / ust / core / trace / LttngUstTrace.java
index 8f159f498f7c720a349039ac1018e8e8928f1348..6e9345cd4c69bc0f1d292ad187ecdd35769c13ba 100644 (file)
@@ -23,7 +23,6 @@ import org.eclipse.core.runtime.IStatus;
 import org.eclipse.core.runtime.Status;
 import org.eclipse.jdt.annotation.NonNull;
 import org.eclipse.jdt.annotation.Nullable;
-import org.eclipse.tracecompass.common.core.NonNullUtils;
 import org.eclipse.tracecompass.internal.lttng2.ust.core.Activator;
 import org.eclipse.tracecompass.internal.lttng2.ust.core.trace.layout.LttngUst20EventLayout;
 import org.eclipse.tracecompass.internal.lttng2.ust.core.trace.layout.LttngUst27EventLayout;
@@ -65,7 +64,7 @@ public class LttngUstTrace extends CtfTmfTrace {
         builder.addAll(CtfTmfTrace.CTF_ASPECTS);
         builder.add(UstDebugInfoBinaryAspect.INSTANCE);
         builder.add(UstDebugInfoSourceAspect.INSTANCE);
-        LTTNG_UST_ASPECTS = NonNullUtils.checkNotNull(builder.build());
+        LTTNG_UST_ASPECTS = builder.build();
     }
 
     private @Nullable ILttngUstEventLayout fLayout = null;
This page took 0.023819 seconds and 5 git commands to generate.