Promote ValueRange 97/102897/3
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 26 Oct 2022 15:47:11 +0000 (17:47 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 26 Oct 2022 17:14:23 +0000 (19:14 +0200)
This is a quite stable API element, remove its @Beta tag.

Change-Id: If7bfbe4488799ef010aadc35b7cc475f16aa4bef
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
model/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/stmt/ValueRange.java

index 45918f8d21e06c2795b93b6884073e157927e258..998e99a6fb77c2f7eddde9a986a7b898df005381 100644 (file)
@@ -9,17 +9,13 @@ package org.opendaylight.yangtools.yang.model.api.stmt;
 
 import static java.util.Objects.requireNonNull;
 
-import com.google.common.annotations.Beta;
 import java.util.Objects;
 import org.eclipse.jdt.annotation.NonNull;
 
 /**
  * YANG specification of a numeric value range. This object is used for {@link LengthStatement} and
  * {@link RangeStatement}.
- *
- * @author Robert Varga
  */
-@Beta
 public abstract sealed class ValueRange {
     private static final class Singleton extends ValueRange {
         private final @NonNull Number value;