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

Change-Id: Ie0e9c4b6717e87a1f1057318f93b7bfe9469c4bf
This commit is contained in:
TreeHugger Robot
2020-04-24 14:37:20 +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 =