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

Commit a916d3de 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: I71abcb88c999c465361bb4a17bd6adfe2aa4ca48
parent 8f90eff5
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -67,9 +67,10 @@ public final class StreamingCall implements Parcelable {
     * @hide
     */
    private StreamingCall(@NonNull Parcel in) {
        mComponentName = in.readParcelable(ComponentName.class.getClassLoader());
        mComponentName = in.readParcelable(ComponentName.class.getClassLoader(),
                ComponentName.class);
        mDisplayName = in.readCharSequence();
        mAddress = in.readParcelable(Uri.class.getClassLoader());
        mAddress = in.readParcelable(Uri.class.getClassLoader(), android.net.Uri.class);
        mExtras = in.readBundle();
        mState = in.readInt();
    }