Remove resetAugmenting() methods
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / AbstractEffectiveSimpleDataNodeContainer.java
index d7bab44548eb8f8d46c3d6d85869b873f687639d..8bf9b59fb5ad7ea1a153406ff6de75cb338671ed 100644 (file)
@@ -100,15 +100,4 @@ public abstract class AbstractEffectiveSimpleDataNodeContainer<D extends Declare
     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
-    }
 }