X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Ftopologymanager%2Fimplementation%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Ftopologymanager%2Finternal%2FTopologyManagerImpl.java;h=b905a8982e83113e10b23261ab2d3045f1142c54;hp=5a38ecd4a61db131623b1e56efef7849bbba2800;hb=72f3cf2421324d9282addb7a880784b7ee05de0c;hpb=dadbdf9865f2f17e73acd1d1ee07500358957689 diff --git a/opendaylight/topologymanager/implementation/src/main/java/org/opendaylight/controller/topologymanager/internal/TopologyManagerImpl.java b/opendaylight/topologymanager/implementation/src/main/java/org/opendaylight/controller/topologymanager/internal/TopologyManagerImpl.java index 5a38ecd4a6..b905a8982e 100644 --- a/opendaylight/topologymanager/implementation/src/main/java/org/opendaylight/controller/topologymanager/internal/TopologyManagerImpl.java +++ b/opendaylight/topologymanager/implementation/src/main/java/org/opendaylight/controller/topologymanager/internal/TopologyManagerImpl.java @@ -20,7 +20,6 @@ import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Map; -import java.util.Map.Entry; import java.util.Set; import java.util.concurrent.BlockingQueue; import java.util.concurrent.ConcurrentHashMap; @@ -116,14 +115,6 @@ public class TopologyManagerImpl implements if (this.topologyManagerAware != null) { log.debug("Adding ITopologyManagerAware: {}", s); this.topologyManagerAware.add(s); - // Reply all the known edges - if (this.edgesDB != null) { - List existingEdges = new ArrayList(); - for (Entry> entry : this.edgesDB.entrySet()) { - existingEdges.add(new TopoEdgeUpdate(entry.getKey(), entry.getValue(), UpdateType.ADDED)); - } - s.edgeUpdate(existingEdges); - } } } @@ -138,14 +129,6 @@ public class TopologyManagerImpl implements if (this.topologyManagerClusterWideAware != null) { log.debug("Adding ITopologyManagerClusterWideAware: {}", s); this.topologyManagerClusterWideAware.add(s); - // Reply all the known edges - if (this.edgesDB != null) { - List existingEdges = new ArrayList(); - for (Entry> entry : this.edgesDB.entrySet()) { - existingEdges.add(new TopoEdgeUpdate(entry.getKey(), entry.getValue(), UpdateType.ADDED)); - } - s.edgeUpdate(existingEdges); - } } }