Shashikanth VH

Openstack interface comparison bug fix.

Change-Id: Ib66d894d4a55640ba398a37db6752e18254a9841
...@@ -192,7 +192,7 @@ public final class OpenstackSecurityGroupRule { ...@@ -192,7 +192,7 @@ public final class OpenstackSecurityGroupRule {
192 if (this instanceof OpenstackSecurityGroupRule) { 192 if (this instanceof OpenstackSecurityGroupRule) {
193 OpenstackSecurityGroupRule that = (OpenstackSecurityGroupRule) o; 193 OpenstackSecurityGroupRule that = (OpenstackSecurityGroupRule) o;
194 return this.direction.equals(that.direction) && 194 return this.direction.equals(that.direction) &&
195 - this.ethertype.equals(that.direction) && 195 + this.ethertype.equals(that.ethertype) &&
196 this.id.equals(that.id) && 196 this.id.equals(that.id) &&
197 this.portRangeMax == that.portRangeMax && 197 this.portRangeMax == that.portRangeMax &&
198 this.portRangeMin == that.portRangeMin && 198 this.portRangeMin == that.portRangeMin &&
......