Fix some null warnings
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / text / TextTraceEventContent.java
index 769c29c3a56289abbab02b44a69d8849c7af163d..bbd60c9054046cd96418b6e5ac08805f2d061c42 100644 (file)
@@ -13,8 +13,6 @@
 
 package org.eclipse.tracecompass.tmf.core.trace.text;
 
-import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
-
 import java.util.ArrayList;
 import java.util.Collections;
 import java.util.List;
@@ -81,7 +79,7 @@ public class TextTraceEventContent implements ITmfEventField {
     private TextTraceEventContent(@NonNull String fieldName) {
         fName = fieldName;
         fValue = null;
-        fFields = checkNotNull(Collections.EMPTY_LIST);
+        fFields = Collections.EMPTY_LIST;
     }
 
     // ------------------------------------------------------------------------
This page took 0.025207 seconds and 5 git commands to generate.