Skip to content
Snippets Groups Projects
Commit ab679227 authored by Srinivasan Ramasubramanian's avatar Srinivasan Ramasubramanian
Browse files

[BVS-324] Remove the usage of getAPMap() when retrieving attachmentpoints. ...

[BVS-324] Remove the usage of getAPMap() when retrieving attachmentpoints.  Its use is needed only when computing duplicates.
parent ab0d5d62
No related branches found
No related tags found
No related merge requests found
......@@ -568,16 +568,11 @@ entity.getLastSeenTimestamp().getTime());
if (attachmentPoints == null) return returnSwitchPorts;
if (attachmentPoints.isEmpty()) return returnSwitchPorts;
// copy ap list.
List<AttachmentPoint> apList;
apList = new ArrayList<AttachmentPoint>();
if (attachmentPoints != null) apList.addAll(attachmentPoints);
// get AP map.
Map<Long, AttachmentPoint> apMap = getAPMap(apList);
List<AttachmentPoint> apList = attachmentPoints;
if (apMap != null) {
for(AttachmentPoint ap: apMap.values()) {
if (apList != null) {
for(AttachmentPoint ap: apList) {
SwitchPort swport = new SwitchPort(ap.getSw(),
ap.getPort());
sp.add(swport);
......@@ -596,6 +591,8 @@ entity.getLastSeenTimestamp().getTime());
this.oldAPs = oldAPList;
List<AttachmentPoint> dupList;
// get AP map.
Map<Long, AttachmentPoint> apMap = getAPMap(apList);
dupList = this.getDuplicateAttachmentPoints(oldAPList, apMap);
if (dupList != null) {
for(AttachmentPoint ap: dupList) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment