DOMDataTreeChangeListener.onInitialData() is mandatory
[mdsal.git] / dom / mdsal-dom-api / src / main / java / org / opendaylight / mdsal / dom / api / DOMDataTreeChangeListener.java
index a6991110d813bc862ab5954ce33ea3edbb0c44bc..da1f92926549914e5ff2904cc24671d73b02618b 100644 (file)
@@ -44,13 +44,6 @@ public interface DOMDataTreeChangeListener extends EventListener {
      * Invoked only once during registration of the listener if there was no data in the conceptual data tree
      * for the supplied path, which was used to register this listener, and after this
      * {@link #onDataTreeChanged(Collection)} would always be invoked for data changes.
-     *
-     * <p>
-     * Default implementation does nothing and is appropriate for users who do not care about ascertaining
-     * initial stat.
      */
-    // FIXME: 8.0.0: this method should be non-default
-    default void onInitialData() {
-        //no-op
-    }
+    void onInitialData();
 }