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

Commit 15cc27f5 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "Fix ParcelNullabilityTest." into stage-aosp-master am: dc6a23ba am:...

Merge "Fix ParcelNullabilityTest." into stage-aosp-master am: dc6a23ba am: bddb4d69 am: 50092640
am: 6ee0f72a

Change-Id: I7ad35696292ea3a05236addc50281097f61adb38
parents 0d8258ee 6ee0f72a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -327,8 +327,8 @@ public final class ParcelNullabilityTest {
        Parcel p = Parcel.obtain();
        p.writeParcelableList(null, 0);

        List<Object> list = new ArrayList<>();
        throughBytes(p).readParcelableList(null, null);
        List<Parcelable> list = new ArrayList<>();
        throughBytes(p).readParcelableList(list, null);
        assertTrue(list.isEmpty());
    }