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

Commit 4b8d0493 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: I3e4108b22ae22710b5c7793f52aaff19634414e5
parent bdf91148
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