Migrate yang-model-util annotations
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseInt32Type.java
index 25ba84a11e00e8dd85a85a48ac8a0ddb8b6bf2dc..08935902f680d151e4a3d6f6e7194a175b9ed485 100644 (file)
@@ -7,12 +7,13 @@
  */
 package org.opendaylight.yangtools.yang.model.util.type;
 
+import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.yangtools.yang.model.api.type.Int32TypeDefinition;
 import org.opendaylight.yangtools.yang.model.util.BaseTypes;
 
 final class BaseInt32Type extends AbstractRangeRestrictedBaseType<Int32TypeDefinition, Integer>
         implements Int32TypeDefinition {
-    static final BaseInt32Type INSTANCE = new BaseInt32Type();
+    static final @NonNull BaseInt32Type INSTANCE = new BaseInt32Type();
 
     private BaseInt32Type() {
         super(BaseTypes.INT32_QNAME, Integer.MIN_VALUE, Integer.MAX_VALUE);