Fix call passing arrays to hash

- http://errorprone.info/bugpattern/ArrayHashCode

Change-Id: Ic2ffb201de6ba2973f41868b4ed99c86ba78c359
This commit is contained in:
Yuta HIGUCHI 2018-05-15 19:25:28 -07:00 committed by Yuta HIGUCHI
parent 68c025bda8
commit cf03a0fafd

View File

@ -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