Yang parser refactoring.
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / builder / api / AugmentationTargetBuilder.java
index 5e02e536c1f599098c2f486626b968ec9610bd10..a58ef41a0e65ff8324d7e6c5be2f5a87c95da00d 100644 (file)
@@ -20,15 +20,4 @@ public interface AugmentationTargetBuilder {
      */
     void addAugmentation(AugmentationSchemaBuilder augment);
 
-    /**
-     * Build again already built data node.
-     *
-     * In general, when Builder.build is called first time, it creates YANG data
-     * model node instance. With every other call it just return this instance
-     * without checking for properties change. This method causes that builder
-     * object process again all its properties and return an updated instance of
-     * YANG data node.
-     */
-    void rebuild();
-
 }