Promote YangParserTestUtils 92/106292/1
authorRobert Varga <robert.varga@pantheon.tech>
Tue, 30 May 2023 20:38:28 +0000 (22:38 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Tue, 30 May 2023 20:38:28 +0000 (22:38 +0200)
These utilities are widely used, not deserving of @Beta anymore.

Change-Id: I57fb39ec7f976b432d0a97d9cc360eaa27a2f527
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
parser/yang-test-util/src/main/java/org/opendaylight/yangtools/yang/test/util/YangParserTestUtils.java

index 0aac1c47c64a30bd4763b0f64fd92c762d759e3b..02b0bcc37378c9db2cd0c16d878159374c623fb3 100644 (file)
@@ -7,7 +7,6 @@
  */
 package org.opendaylight.yangtools.yang.test.util;
 
-import com.google.common.annotations.Beta;
 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 import java.io.File;
 import java.io.FileFilter;
@@ -38,11 +37,9 @@ import org.opendaylight.yangtools.yang.parser.api.YangSyntaxErrorException;
 
 /**
  * Utility class which provides convenience methods for producing effective schema context based on the supplied
- * yang/yin sources or paths to these sources.
+ * YANG/YIN sources or paths to these sources.
  */
-@Beta
 public final class YangParserTestUtils {
-
     private static final FileFilter YANG_FILE_FILTER = file -> {
         // Locale keeps SpotBugs happy. It should not matter that much anyway.
         final String name = file.getName().toLowerCase(Locale.ENGLISH);