mirror of https://github.com/apache/jclouds.git
Fix hashCode to include parent Reference id
This commit is contained in:
parent
027b3d0d33
commit
8b1a48b2e0
|
@ -85,7 +85,7 @@ public class Network extends Reference {
|
|||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hashCode(name);
|
||||
return Objects.hashCode(super.hashCode(), name);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue