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

Commit dd0b7d08 authored by Sungsoo Lim's avatar Sungsoo Lim Committed by Android (Google) Code Review
Browse files

Merge "Fix hashCode of TvContentRating" into lmp-dev

parents 20200849 a9a29a29
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1480,7 +1480,7 @@ public final class TvContentRating {
            Arrays.sort(subRatings);
            mSubRatings = subRatings;
        }
        mHashCode = Objects.hash(mDomain, mRating, mSubRatings);
        mHashCode = 31 * Objects.hash(mDomain, mRating) + Arrays.hashCode(mSubRatings);
    }

    /**