Add null checks for methods missing them
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.ctf.core.tests / src / org / eclipse / tracecompass / ctf / core / tests / types / ArrayDefinition2Test.java
index a1ae1217f6b2d86ff7d1c54026a3f53522e05f20..6f71cb2c8c6aa428db8f7617b7a516fefc6d465d 100644 (file)
@@ -125,7 +125,6 @@ public class ArrayDefinition2Test {
         CompoundDeclaration declaration = (CompoundDeclaration) charArrayFixture.getDeclaration();
         String fieldName = "";
 
-        @SuppressWarnings("null")
         ArrayDefinition result = new ArrayDefinition(declaration, this.trace, fieldName, Arrays.asList(new Definition[0]));
         assertNotNull(result);
     }
@@ -141,7 +140,6 @@ public class ArrayDefinition2Test {
         IDefinitionScope definitionScope = getDefinitionScope();
 
         String fieldName = "";
-        @SuppressWarnings("null")
         ArrayDefinition result = new ArrayDefinition(declaration, definitionScope, fieldName, Arrays.asList(new Definition[0]));
         assertNotNull(result);
     }
This page took 0.037847 seconds and 5 git commands to generate.