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
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return Objects.hashCode(name);
|
return Objects.hashCode(super.hashCode(), name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue