Upgrade ietf-{inet,yang}-types to 2013-07-15
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / FromInternalReflectorClientImportPolicy.java
index dddf7fc3e281e0f96089630631f52468d873244e..7889336fa78b0b1508c6a104116210f9d9107e72 100644 (file)
@@ -7,9 +7,8 @@
  */
 package org.opendaylight.protocol.bgp.rib.impl;
 
-import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Ipv4Address;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev130919.ClusterIdentifier;
-import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
 
 /**
  * Invoked on routes which we get from our Internal peers. This is a special-case of
@@ -19,11 +18,4 @@ final class FromInternalReflectorClientImportPolicy extends FromInternalImportPo
     FromInternalReflectorClientImportPolicy(final Ipv4Address bgpIdentifier, final ClusterIdentifier clusterIdentifier) {
         super(bgpIdentifier, clusterIdentifier);
     }
-
-    @Override
-    ContainerNode effectiveAttributes(final ContainerNode attributes) {
-        // TODO: (defensiveness) verify ORIGINATOR_ID (should have been set)
-
-        return super.effectiveAttributes(attributes);
-    }
 }