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

Commit 88dadfaa authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android Git Automerger
Browse files

am 7cff91ea: am 079cfa64: Merge "Frameworks/base: Fix a hashCode implementation"

* commit '7cff91ea':
  Frameworks/base: Fix a hashCode implementation
parents 11090061 7cff91ea
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -334,7 +334,7 @@ public class WifiP2pServiceResponse implements Parcelable {
        result = 31 * result + mTransId;
        result = 31 * result + mTransId;
        result = 31 * result + (mDevice.deviceAddress == null ?
        result = 31 * result + (mDevice.deviceAddress == null ?
                0 : mDevice.deviceAddress.hashCode());
                0 : mDevice.deviceAddress.hashCode());
        result = 31 * result + (mData == null ? 0 : mData.hashCode());
        result = 31 * result + (mData == null ? 0 : Arrays.hashCode(mData));
        return result;
        return result;
    }
    }