BUG-223: Support having multiple RIB instances
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BGPObjectComparator.java
index 767009bfecb2214597a3addf4d4e8f0c3dd727cf..d252af29e4d6338bf091be290a1d7f3babc5e540 100644 (file)
@@ -9,7 +9,7 @@ package org.opendaylight.protocol.bgp.rib.impl;
 
 import java.util.Comparator;
 
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.PathAttributes;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.PathAttributes;
 
 /**
  * This comparator is intended to implement BGP Best Path Selection algorithm, as described at
@@ -36,8 +36,7 @@ final class BGPObjectComparator implements Comparator<PathAttributes> {
                        return 0;
                }
 
-               // FIXME: look at ASPath
-               // FIXME: look at everything else :-)
+               // FIXME: BUG-185: implement here
 
                return 0;
        }