Remove ImportResolutionMode.SEMVER_LATEST
[yangtools.git] / plugin / plugin-generator-api / src / main / java / org / opendaylight / yangtools / plugin / generator / api / FileGenerator.java
index 200b7c2d7312c4fb681b67bc3f5f1a293ed71395..9385c2a1c65e21a50c1cf6b5b7428b24db23ae54 100644 (file)
@@ -60,12 +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}.
-         */
-        SEMVER_LATEST,
+        REVISION_EXACT_OR_LATEST;
     }
 }