Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4e29126d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

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

Change-Id: Ib4c6ad568874e8f60fb097daace14d76ac417fba
parents 23dac393 f0de93d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -139,7 +139,7 @@ public final class DeviceProductInfo implements Parcelable {
    @Override
    @Override
    public int hashCode() {
    public int hashCode() {
        return Objects.hash(mName, mManufacturerPnpId, mProductId, mModelYear, mManufactureDate,
        return Objects.hash(mName, mManufacturerPnpId, mProductId, mModelYear, mManufactureDate,
            mRelativeAddress);
            Arrays.hashCode(mRelativeAddress));
    }
    }


    public static final Creator<DeviceProductInfo> CREATOR =
    public static final Creator<DeviceProductInfo> CREATOR =