Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / TmfTrace.java
index e4440b9ac28fe7a11638ec2b12297901176488a4..e941c2a1563f913fe0e1590235e3bac5496fc3de 100644 (file)
@@ -16,8 +16,6 @@
 
 package org.eclipse.tracecompass.tmf.core.trace;
 
-import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
-
 import java.io.File;
 import java.util.Collection;
 import java.util.Collections;
@@ -100,11 +98,11 @@ public abstract class TmfTrace extends TmfEventProvider implements ITmfTrace, IT
      * Basic aspects that should be valid for all trace types.
      */
     public static final @NonNull Collection<@NonNull ITmfEventAspect> BASE_ASPECTS =
-            checkNotNull(ImmutableList.of(
+            ImmutableList.of(
                     ITmfEventAspect.BaseAspects.TIMESTAMP,
                     ITmfEventAspect.BaseAspects.EVENT_TYPE,
                     ITmfEventAspect.BaseAspects.CONTENTS
-                    ));
+                    );
 
     // ------------------------------------------------------------------------
     // Instance attributes
This page took 0.026176 seconds and 5 git commands to generate.