Promote dedicated YANG types
[yangtools.git] / common / yang-common / src / main / java / org / opendaylight / yangtools / yang / common / Uint8.java
index ff87f0d2eeccfa75ecb91dde8aa764ef6a22fb87..282d796f89169ce20753d1fd6730b9e4cdc5832e 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 java.io.Serial;
 import org.eclipse.jdt.annotation.NonNull;
 import org.eclipse.jdt.annotation.NonNullByDefault;
@@ -17,11 +16,8 @@ import org.eclipse.jdt.annotation.Nullable;
 import org.opendaylight.yangtools.concepts.Either;
 
 /**
- * Dedicated type for YANG's 'type uint8' type.
- *
- * @author Robert Varga
+ * Dedicated type for YANG's {@code type uint8} type.
  */
-@Beta
 @NonNullByDefault
 public class Uint8 extends Number implements CanonicalValue<Uint8> {
     public static final class Support extends AbstractCanonicalValueSupport<Uint8> {