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

Commit e402b815 authored by Achim Thesmann's avatar Achim Thesmann
Browse files

Fix Unsafe Parcel Usage

This is an automatically applied fix.

Bug: 439097174
Test: build only (automatic refactoring)
Flag: EXEMPT PURE_REFACTOR
Change-Id: Ib685e1aaf7719115f964f06c2d09ce0469b4d670
parent 3df32c4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -545,7 +545,7 @@ public final class FillRequest implements Parcelable {
        byte flg = in.readByte();
        int id = in.readInt();
        List<FillContext> fillContexts = new ArrayList<>();
        in.readParcelableList(fillContexts, FillContext.class.getClassLoader());
        in.readParcelableList(fillContexts, FillContext.class.getClassLoader(), FillContext.class);
        List<String> hints = new ArrayList<>();
        in.readStringList(hints);
        Bundle clientState = (flg & 0x8) == 0 ? null : in.readBundle();