Pavlin Radoslavov

Removed leftover TODO comment, that was done in the past.

Change-Id: If4e89a19248a7915f11c408355bad9fc39442992
...@@ -223,11 +223,6 @@ public class BgpSessionManager { ...@@ -223,11 +223,6 @@ public class BgpSessionManager {
223 synchronized void routeUpdates(BgpSession bgpSession, 223 synchronized void routeUpdates(BgpSession bgpSession,
224 Collection<BgpRouteEntry> addedBgpRouteEntries, 224 Collection<BgpRouteEntry> addedBgpRouteEntries,
225 Collection<BgpRouteEntry> deletedBgpRouteEntries) { 225 Collection<BgpRouteEntry> deletedBgpRouteEntries) {
226 - //
227 - // TODO: Merge the updates from different BGP Peers,
228 - // by choosing the best route.
229 - //
230 -
231 // Process the deleted route entries 226 // Process the deleted route entries
232 for (BgpRouteEntry bgpRouteEntry : deletedBgpRouteEntries) { 227 for (BgpRouteEntry bgpRouteEntry : deletedBgpRouteEntries) {
233 processDeletedRoute(bgpSession, bgpRouteEntry); 228 processDeletedRoute(bgpSession, bgpRouteEntry);
......