Openstack interface comparison bug fix.
Change-Id: Ib66d894d4a55640ba398a37db6752e18254a9841
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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 && | ... | ... |
-
Please register or login to post a comment