Promote dedicated YANG types
[yangtools.git] / common / yang-common / src / main / java / org / opendaylight / yangtools / yang / common / Uint32.java
index d7bd60b9ae8f7ccacf6baeca3776f79b24f2c29f..d01a01196f5f9687243351620f24da137c6b61c6 100644 (file)
@@ -9,7 +9,6 @@ package org.opendaylight.yangtools.yang.common;
 
 import static java.util.Objects.requireNonNull;
 
-import com.google.common.annotations.Beta;
 import com.google.common.collect.Interner;
 import com.google.common.collect.Interners;
 import com.google.common.primitives.UnsignedInteger;
@@ -20,11 +19,8 @@ import org.eclipse.jdt.annotation.Nullable;
 import org.opendaylight.yangtools.concepts.Either;
 
 /**
- * Dedicated type for YANG's 'type uint32' type.
- *
- * @author Robert Varga
+ * Dedicated type for YANG's {@code type uint32} type.
  */
-@Beta
 @NonNullByDefault
 public class Uint32 extends Number implements CanonicalValue<Uint32> {
     public static final class Support extends AbstractCanonicalValueSupport<Uint32> {