mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-05-05 12:16:13 +02:00
Fix call passing arrays to hash
- http://errorprone.info/bugpattern/ArrayHashCode Change-Id: Ic2ffb201de6ba2973f41868b4ed99c86ba78c359
This commit is contained in:
parent
68c025bda8
commit
cf03a0fafd
@ -335,7 +335,9 @@ public class Controller {
|
||||
return Objects.hash(mode);
|
||||
}
|
||||
return Objects.hash(mode, ksLocation, tsLocation,
|
||||
ksPwd, tsPwd, ksSignature, tsSignature);
|
||||
ksPwd, tsPwd,
|
||||
Arrays.hashCode(ksSignature),
|
||||
Arrays.hashCode(tsSignature));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user