Fix latest batch of null warnings
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / internal / ctf / core / event / types / composite / EventHeaderDefinition.java
index f98ad6682ac99be21a479581c4bfaa7ed75bbf9d..ff0841353c7dabd17be36e2efca68deb94ebddc5 100644 (file)
@@ -33,7 +33,7 @@ import com.google.common.collect.ImmutableList;
  */
 public final class EventHeaderDefinition extends Definition implements ICompositeDefinition {
 
-    private static final @NonNull List<String> FIELD_NAMES = ImmutableList.of(
+    private static final @NonNull List<@NonNull String> FIELD_NAMES = ImmutableList.of(
             IEventHeaderDeclaration.ID,
             IEventHeaderDeclaration.TIMESTAMP
             );
@@ -99,7 +99,7 @@ public final class EventHeaderDefinition extends Definition implements IComposit
     }
 
     @Override
-    public @NonNull List<String> getFieldNames() {
+    public @NonNull List<@NonNull String> getFieldNames() {
         return FIELD_NAMES;
     }
-}
\ No newline at end of file
+}
This page took 0.025875 seconds and 5 git commands to generate.