X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=plugin%2Fyang-maven-plugin-spi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang2sources%2Fspi%2FBasicCodeGenerator.java;h=81978592c8c80678e0c9d14fd0e2397d1fee7b6d;hb=refs%2Fchanges%2F14%2F101014%2F1;hp=9238ec12304da3b83dc031a7bec646bbbd996f9e;hpb=91a722b87de18b19657359c331dd959423ac3512;p=yangtools.git diff --git a/plugin/yang-maven-plugin-spi/src/main/java/org/opendaylight/yangtools/yang2sources/spi/BasicCodeGenerator.java b/plugin/yang-maven-plugin-spi/src/main/java/org/opendaylight/yangtools/yang2sources/spi/BasicCodeGenerator.java index 9238ec1230..81978592c8 100644 --- a/plugin/yang-maven-plugin-spi/src/main/java/org/opendaylight/yangtools/yang2sources/spi/BasicCodeGenerator.java +++ b/plugin/yang-maven-plugin-spi/src/main/java/org/opendaylight/yangtools/yang2sources/spi/BasicCodeGenerator.java @@ -34,7 +34,10 @@ public interface BasicCodeGenerator { * 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 This mode has no users and is deprecated for removal. */ + @Deprecated(forRemoval = true, since = "8.0.4") SEMVER_LATEST(FileGenerator.ImportResolutionMode.SEMVER_LATEST); private final FileGenerator.@NonNull ImportResolutionMode fileGeneratorMode;