Fix some null warnings
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.core / src / org / eclipse / tracecompass / tmf / analysis / xml / core / model / readonly / TmfXmlReadOnlyStateValue.java
index 708569d56563cea416678e5913f766cb5dfa9598..cc0ad19df2aa4804b83584028948f2043d24417c 100644 (file)
@@ -12,8 +12,6 @@
 
 package org.eclipse.tracecompass.tmf.analysis.xml.core.model.readonly;
 
-import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
-
 import java.util.Collections;
 import java.util.List;
 
@@ -65,7 +63,7 @@ public class TmfXmlReadOnlyStateValue extends TmfXmlStateValue {
      */
     public TmfXmlReadOnlyStateValue(TmfXmlReadOnlyModelFactory modelFactory, Element node,
             IXmlStateSystemContainer container, String eventField) {
-        super(modelFactory, node, container, checkNotNull(Collections.EMPTY_LIST), eventField);
+        super(modelFactory, node, container, Collections.EMPTY_LIST, eventField);
     }
 
 }
This page took 0.03381 seconds and 5 git commands to generate.