Remove resetAugmenting() methods
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / AbstractEffectiveDataSchemaNode.java
index 10c3f499cbb7261f8e3c2d5a9e220d9ca62770bb..88956b96b49628e72465a347c5476db531854964 100644 (file)
@@ -62,15 +62,4 @@ public abstract class AbstractEffectiveDataSchemaNode<D extends DeclaredStatemen
     public final Optional<RevisionAwareXPath> getWhenCondition() {
         return Optional.ofNullable(whenCondition);
     }
-
-    /**
-     * Reset {@link #isAugmenting()} to false.
-     *
-     * @deprecated This method is a violation of immutable contract and is a side-effect of bad/incomplete lifecycle,
-     *             which needs to be fixed. Do not introduce new callers. This deficiency is tracked in YANGTOOLS-724.
-     */
-    @Deprecated(forRemoval = true)
-    public final void resetAugmenting() {
-        // Intentional no-op
-    }
 }