Fix invalid use of @NonNull 19/113919/1
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 9 Oct 2024 08:50:01 +0000 (10:50 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 9 Oct 2024 08:50:01 +0000 (10:50 +0200)
Primitive types are not references, hence they can never be null.

Change-Id: Ia68c25593c3a4383970d59f5588f5ce6ba9cf2bc
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/model/SchemaEntity.java

index 984fe127b37e076724dac4128fe41a3c307611c6..c2b58194a0806795a4221d04305c1d52c75bc2b1 100644 (file)
@@ -40,7 +40,7 @@ public abstract sealed class SchemaEntity extends OpenApiEntity permits NodeSche
             final @Nullable String discriminator, final @NonNull String type,
             final @NonNull SchemaInferenceStack context, final @NonNull String parentName, final boolean isParentConfig,
             final @NonNull DefinitionNames definitionNames, final int width,
-            final int depth, final @NonNull int nodeDepth) {
+            final int depth, final int nodeDepth) {
         this.value = requireNonNull(value);
         this.title = requireNonNull(title);
         this.type = requireNonNull(type);