Migrate yang-model-util annotations
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseUint16Type.java
index cc4ec376f4e1c065e05ee7f7efda4760ac9c5665..41b525927d9202c35f1a823d35077b94748eff2e 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.Uint16TypeDefinition;
 import org.opendaylight.yangtools.yang.model.util.BaseTypes;
 
 final class BaseUint16Type extends AbstractRangeRestrictedBaseType<Uint16TypeDefinition, Integer>
         implements Uint16TypeDefinition {
-    static final BaseUint16Type INSTANCE = new BaseUint16Type();
+    static final @NonNull BaseUint16Type INSTANCE = new BaseUint16Type();
 
     private BaseUint16Type() {
         super(BaseTypes.UINT16_QNAME, 0, 65535);