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

Commit 079cfa64 authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Gerrit Code Review
Browse files

Merge "Frameworks/base: Fix a hashCode implementation"

parents 5abcd06b 34a7d13a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -334,7 +334,7 @@ public class WifiP2pServiceResponse implements Parcelable {
        result = 31 * result + mTransId;
        result = 31 * result + (mDevice.deviceAddress == null ?
                0 : mDevice.deviceAddress.hashCode());
        result = 31 * result + (mData == null ? 0 : mData.hashCode());
        result = 31 * result + (mData == null ? 0 : Arrays.hashCode(mData));
        return result;
    }