Fix various SonarQube complains
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / FromInternalReflectorClientImportPolicy.java
index dddf7fc3e281e0f96089630631f52468d873244e..94827e4be92025d98128ad4a58e3849a5029c2a4 100644 (file)
@@ -9,7 +9,6 @@ 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.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);
-    }
 }