Remove unused parseYangSources() methods 95/100395/1
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 4 Apr 2022 22:52:08 +0000 (00:52 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 4 Apr 2022 22:52:08 +0000 (00:52 +0200)
There are no callers of these methods, remove them.

Change-Id: I8642954e15ee7ff1fe27a5df88839ac8dba239fa
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
parser/yang-parser-rfc7950/src/test/java/org/opendaylight/yangtools/yang/stmt/StmtTestUtils.java

index cf334d9a430b8624dd6c4427ca313ec441d41ece..3a591ce650c905d2ad59182fd4cc1d2412068e92 100644 (file)
@@ -122,16 +122,6 @@ public final class StmtTestUtils {
         return parseYangSources(config, supportedFeatures, sources);
     }
 
-    public static EffectiveModelContext parseYangSources(final Collection<File> files) throws ReactorException,
-            IOException, YangSyntaxErrorException {
-        return parseYangSources(files, YangParserConfiguration.DEFAULT);
-    }
-
-    public static EffectiveModelContext parseYangSources(final Collection<File> files,
-            final YangParserConfiguration config) throws ReactorException, IOException, YangSyntaxErrorException {
-        return parseYangSources(config, null, files.toArray(new File[0]));
-    }
-
     public static EffectiveModelContext parseYangSources(final String yangSourcesDirectoryPath)
             throws ReactorException, URISyntaxException, IOException, YangSyntaxErrorException {
         return parseYangSources(yangSourcesDirectoryPath, YangParserConfiguration.DEFAULT);