From 1812c072a4d5c3ba77d9e6c0c7b70f399a6f900d Mon Sep 17 00:00:00 2001 From: Ivan Hrasko Date: Fri, 25 Mar 2022 16:36:52 +0100 Subject: [PATCH] Remove StmtTestUtils.parseYangSource(String) This deprecated method is no more used. JIRA: YANGTOOLS-1345 Change-Id: I17f8442073c432e68a6dde2129ae842cce226ee5 Signed-off-by: Ivan Hrasko --- .../opendaylight/yangtools/yang/stmt/StmtTestUtils.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/parser/yang-parser-rfc7950/src/test/java/org/opendaylight/yangtools/yang/stmt/StmtTestUtils.java b/parser/yang-parser-rfc7950/src/test/java/org/opendaylight/yangtools/yang/stmt/StmtTestUtils.java index 1a6ddb260a..72acef86ac 100644 --- a/parser/yang-parser-rfc7950/src/test/java/org/opendaylight/yangtools/yang/stmt/StmtTestUtils.java +++ b/parser/yang-parser-rfc7950/src/test/java/org/opendaylight/yangtools/yang/stmt/StmtTestUtils.java @@ -84,13 +84,6 @@ public final class StmtTestUtils { } } - @Deprecated(forRemoval = true) - // TestUtils.parseYangSource() instead, but callers need also further cleanup - public static EffectiveModelContext parseYangSource(final String yangSourcePath) throws ReactorException, - URISyntaxException, IOException, YangSyntaxErrorException { - return parseYangSource(yangSourcePath, YangParserConfiguration.DEFAULT, null); - } - public static EffectiveModelContext parseYangSource(final String yangSourcePath, final Set supportedFeatures) throws ReactorException, URISyntaxException, IOException, YangSyntaxErrorException { return parseYangSource(yangSourcePath, YangParserConfiguration.DEFAULT, supportedFeatures); -- 2.36.6