X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=plugin%2Fplugin-generator-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fplugin%2Fgenerator%2Fapi%2FFileGenerator.java;h=9385c2a1c65e21a50c1cf6b5b7428b24db23ae54;hb=060e5867fd26ce83fbc8076cd303365e83444388;hp=f255817de9edd10ae0e2ca510d3e5215c106be1b;hpb=ac3e96df074fd31f9fd96137a5781877b64baf86;p=yangtools.git diff --git a/plugin/plugin-generator-api/src/main/java/org/opendaylight/yangtools/plugin/generator/api/FileGenerator.java b/plugin/plugin-generator-api/src/main/java/org/opendaylight/yangtools/plugin/generator/api/FileGenerator.java index f255817de9..9385c2a1c6 100644 --- a/plugin/plugin-generator-api/src/main/java/org/opendaylight/yangtools/plugin/generator/api/FileGenerator.java +++ b/plugin/plugin-generator-api/src/main/java/org/opendaylight/yangtools/plugin/generator/api/FileGenerator.java @@ -60,13 +60,6 @@ public interface FileGenerator { * Standard, RFC6020 and RFC7950 compliant mode. Imports are satisfied by exact revision match (if specified), * or by latest available revision. */ - REVISION_EXACT_OR_LATEST, - /** - * Semantic version based mode. Imports which specify a semantic version (via the OpenConfig extension) will - * be satisfied by module which exports the latest compatible revision. Imports which do not specify semantic - * version will be resolved just as they would be via {@link #REVISION_EXACT_OR_LATEST}. - */ - @Deprecated(since = "7.0.11", forRemoval = true) - SEMVER_LATEST, + REVISION_EXACT_OR_LATEST; } }