Migrate yang-model-util annotations
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseUint32Type.java
index 97fdeb097447ee21ebccd3f5fa980b6aa18361b7..692e6eb367d7cfafd3b2d015b0071eaddd2cd97c 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.Uint32TypeDefinition;
 import org.opendaylight.yangtools.yang.model.util.BaseTypes;
 
 final class BaseUint32Type extends AbstractRangeRestrictedBaseType<Uint32TypeDefinition, Long>
         implements Uint32TypeDefinition {
-    static final BaseUint32Type INSTANCE = new BaseUint32Type();
+    static final @NonNull BaseUint32Type INSTANCE = new BaseUint32Type();
 
     private BaseUint32Type() {
         super(BaseTypes.UINT32_QNAME, 0L, 4294967295L);