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

Commit 307fb70b authored by Achim Thesmann's avatar Achim Thesmann Committed by Android (Google) Code Review
Browse files

Merge "Fix Unsafe Parcel Usage" into main

parents d7fb2f02 4b8d0493
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -46,8 +46,9 @@ public class AppLaunchInfo implements Parcelable {
    }

    protected AppLaunchInfo(Parcel in) {
        mComponentName = in.readParcelable(ComponentName.class.getClassLoader());
        mLaunchIntent = in.readParcelable(Intent.class.getClassLoader());
        mComponentName = in.readParcelable(ComponentName.class.getClassLoader(),
                ComponentName.class);
        mLaunchIntent = in.readParcelable(Intent.class.getClassLoader(), Intent.class);
    }

    @Override