From f23c00c51d7874475c91a9290b561a9ab1d0cdc5 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 20 Nov 2019 09:11:28 +0100 Subject: [PATCH] Fix onDataTreeChanged() references Use a link to specific method, not just any matching. Change-Id: I99752bbda0e9ff3d3371ba8658b319a9cbfe4fce Signed-off-by: Robert Varga --- .../mdsal/binding/api/DataTreeChangeListener.java | 4 ++-- .../opendaylight/mdsal/dom/api/DOMDataTreeChangeListener.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/binding/mdsal-binding-api/src/main/java/org/opendaylight/mdsal/binding/api/DataTreeChangeListener.java b/binding/mdsal-binding-api/src/main/java/org/opendaylight/mdsal/binding/api/DataTreeChangeListener.java index 4b2ea06eda..95f9c03afd 100644 --- a/binding/mdsal-binding-api/src/main/java/org/opendaylight/mdsal/binding/api/DataTreeChangeListener.java +++ b/binding/mdsal-binding-api/src/main/java/org/opendaylight/mdsal/binding/api/DataTreeChangeListener.java @@ -47,8 +47,8 @@ public interface DataTreeChangeListener 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. * *

* Default implementation does nothing and is appropriate for users who do not care about ascertaining diff --git a/dom/mdsal-dom-api/src/main/java/org/opendaylight/mdsal/dom/api/DOMDataTreeChangeListener.java b/dom/mdsal-dom-api/src/main/java/org/opendaylight/mdsal/dom/api/DOMDataTreeChangeListener.java index d3d78a7954..0c0aeb23e6 100644 --- a/dom/mdsal-dom-api/src/main/java/org/opendaylight/mdsal/dom/api/DOMDataTreeChangeListener.java +++ b/dom/mdsal-dom-api/src/main/java/org/opendaylight/mdsal/dom/api/DOMDataTreeChangeListener.java @@ -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. * *

* Default implementation does nothing and is appropriate for users who do not care about ascertaining -- 2.36.6