Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core.tests / stubs / org / eclipse / tracecompass / tmf / tests / stubs / trace / text / SyslogTrace.java
index 967eab7ba524c36da554560d4e95f4d5f3365027..68547d4bb0c360e339fc6533fffa3b2f3da3f71b 100644 (file)
@@ -13,8 +13,6 @@
 
 package org.eclipse.tracecompass.tmf.tests.stubs.trace.text;
 
-import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
-
 import java.text.ParseException;
 import java.text.SimpleDateFormat;
 import java.util.Calendar;
@@ -67,14 +65,14 @@ public class SyslogTrace extends TextTrace<SyslogEvent> {
 
     /** The event aspects */
     public static final @NonNull Collection<ITmfEventAspect> ASPECTS =
-            checkNotNull(ImmutableList.of(
+            ImmutableList.of(
                     ITmfEventAspect.BaseAspects.TIMESTAMP,
                     new TmfContentFieldAspect(Field.HOST, Field.HOST),
                     new TmfContentFieldAspect(Field.LOGGER, Field.LOGGER),
                     new TmfContentFieldAspect(Field.FILE, Field.FILE),
                     new TmfContentFieldAspect(Field.LINE, Field.LINE),
                     new TmfContentFieldAspect(Field.MESSAGE, Field.MESSAGE)
-                    ));
+                    );
 
     /**
      * Constructor
This page took 0.030007 seconds and 5 git commands to generate.