Remove references to java.util.EventListener
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / DataTreeChangeListener.java
index 6a0a26568f12cb8dbf6a992c39c093b529fa3b0d..3c6c43c2946def05e89b98c4153d5423746daa1e 100644 (file)
@@ -8,7 +8,6 @@
 package org.opendaylight.mdsal.binding.api;
 
 import java.util.Collection;
-import java.util.EventListener;
 import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 
@@ -17,7 +16,7 @@ import org.opendaylight.yangtools.yang.binding.DataObject;
  * data tree changes. It provides a cursor-based view of the change, which has potentially
  * lower overhead and allow more flexible consumption of change event.
  */
-public interface DataTreeChangeListener<T extends DataObject> extends EventListener {
+public interface DataTreeChangeListener<T extends DataObject> {
     /**
      * Invoked when there was data change for the supplied path, which was used
      * to register this listener.