Fix some null warnings
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.tmf.ctf.core / src / org / eclipse / tracecompass / tmf / ctf / core / event / CtfTmfEvent.java
index 17ef0213ca92be4330b977a38dc093744b243390..6c1688300d862047bb8960f7e36be34bbc973bfd 100644 (file)
@@ -293,7 +293,7 @@ public class CtfTmfEvent extends TmfEvent
         if (declaration == null) {
             return new HashSet<>();
         }
-        return checkNotNull(declaration.getCustomAttributes());
+        return declaration.getCustomAttributes();
     }
 
     @Override
This page took 0.025314 seconds and 5 git commands to generate.