Fix some null warnings
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / internal / ctf / core / event / types / ArrayDeclaration.java
index 3983f34804e8842971bcb49054c77185fb3ef1b4..410012c408696067e4cee57bb420c01e778853da 100644 (file)
@@ -113,7 +113,7 @@ public final class ArrayDeclaration extends CompoundDeclaration {
 
             return new ByteArrayDefinition(this, definitionScope, fieldName, data);
         }
-        @NonNull List<Definition> definitions = read(input, definitionScope, fieldName);
+        @NonNull List<@NonNull Definition> definitions = read(input, definitionScope, fieldName);
         return new ArrayDefinition(this, definitionScope, fieldName, definitions);
     }
 
This page took 0.033869 seconds and 5 git commands to generate.