Code Clean Up
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / PeerExportGroupImpl.java
index 69ba399ce140a321f6d0538264f1a0aeb490e512..7a5b42f156f7389d77323054464ae4d878b6f978 100644 (file)
@@ -26,12 +26,12 @@ final class PeerExportGroupImpl implements PeerExportGroup {
 
     @Override
     public ContainerNode effectiveAttributes(final PeerRole role, final ContainerNode attributes) {
-        return attributes == null || role == null ? null : policy.effectiveAttributes(role, attributes);
+        return attributes == null || role == null ? null : this.policy.effectiveAttributes(role, attributes);
     }
 
     @Override
     public Collection<Map.Entry<PeerId, PeerExporTuple>> getPeers() {
-        return peers.entrySet();
+        return this.peers.entrySet();
     }
 
     @Override