mirror of https://github.com/apache/jclouds.git
Update compute/src/main/java/org/jclouds/net/domain/IpPermission.java
shouldn't we hash on cidrBlocks as well... breaks some set logic I'm using. Wondering if this will be built out, or if it will be dropped?
This commit is contained in:
parent
fd42b450af
commit
35dd0a67aa
|
@ -219,7 +219,7 @@ public class IpPermission implements Comparable<IpPermission> {
|
|||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hashCode(ipProtocol, fromPort, toPort, tenantIdGroupNamePairs, groupIds, groupIds);
|
||||
return Objects.hashCode(ipProtocol, fromPort, toPort, tenantIdGroupNamePairs, groupIds, cidrBlocks);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue