Merge "Use Arrays.hashCode in DeviceProductInfo" into rvc-dev am: f0de93d7b2 am: 6cd7f6c60d

Change-Id: I446f2c732dc68bb9274b9c55f7f10e543cda7fd9
This commit is contained in:
TreeHugger Robot
2020-04-24 14:48:44 +00:00
committed by Automerger Merge Worker

View File

@@ -139,7 +139,7 @@ public final class DeviceProductInfo implements Parcelable {
@Override
public int hashCode() {
return Objects.hash(mName, mManufacturerPnpId, mProductId, mModelYear, mManufactureDate,
mRelativeAddress);
Arrays.hashCode(mRelativeAddress));
}
public static final Creator<DeviceProductInfo> CREATOR =