Fix onDataTreeChanged() references 82/85882/2
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 20 Nov 2019 08:11:28 +0000 (09:11 +0100)
committerRobert Varga <nite@hq.sk>
Wed, 20 Nov 2019 12:52:03 +0000 (12:52 +0000)
Use a link to specific method, not just any matching.

Change-Id: I99752bbda0e9ff3d3371ba8658b319a9cbfe4fce
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
(cherry picked from commit f23c00c51d7874475c91a9290b561a9ab1d0cdc5)

binding/mdsal-binding-api/src/main/java/org/opendaylight/mdsal/binding/api/DataTreeChangeListener.java
dom/mdsal-dom-api/src/main/java/org/opendaylight/mdsal/dom/api/DOMDataTreeChangeListener.java

index 4b2ea06eda8e54bd05a844aea1216d62c00d59d2..95f9c03afd2e293b56303e0ad0a3c51d51ed3cf4 100644 (file)
@@ -47,8 +47,8 @@ public interface DataTreeChangeListener<T extends DataObject> extends EventListe
 
     /**
      * 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}
-     * would always be invoked for data changes.
+     * 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
index d3d78a795486316c950a19dbbab2428d2f4d88ba..0c0aeb23e6a07277d5bd67458978396142d7e526 100644 (file)
@@ -42,8 +42,8 @@ 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}
-     * would always be invoked for data changes.
+     * 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