Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / internal / ctf / core / event / types / ArrayDeclaration.java
index 410012c408696067e4cee57bb420c01e778853da..4a4572c4d366bd06160aae05a7c7f06e09ff2430 100644 (file)
@@ -12,8 +12,6 @@
 
 package org.eclipse.tracecompass.internal.ctf.core.event.types;
 
-import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
-
 import java.util.List;
 
 import org.eclipse.jdt.annotation.NonNull;
@@ -138,7 +136,7 @@ public final class ArrayDeclaration extends CompoundDeclaration {
             }
             definitions.add(fElemType.createDefinition(definitionScope, name, input));
         }
-        return checkNotNull(definitions.build());
+        return definitions.build();
     }
 
     @Override
This page took 0.025074 seconds and 5 git commands to generate.