Fixed hash method in CordVtnNode

- Hash method only uses hostname

Change-Id: Ibc8309374c8d22138349b651fcac4b6e2bf8b0e0
This commit is contained in:
Daniel Park 2016-01-20 10:09:44 +09:00 committed by Gerrit Code Review
parent 4a14185032
commit c54ac76acf

View File

@ -140,7 +140,7 @@ public final class CordVtnNode {
@Override
public int hashCode() {
return Objects.hash(hostname, ovsdbIp, ovsdbPort);
return Objects.hash(hostname);
}
@Override