Merge "Use Arrays.hashCode in DeviceProductInfo" into rvc-dev

This commit is contained in:
TreeHugger Robot
2020-04-24 14:24:25 +00:00
committed by Android (Google) Code Review

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 =