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

Commit 834ac98c 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: I6d5f9f4e0591d265a3483ae663dfffb0214a4d36
parent 08db397a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -361,7 +361,7 @@ public final class SatelliteSessionStats implements Parcelable {
        for (int i = 0; i < size; i++) {
            Integer key = in.readInt();
            SatelliteSessionStats value = in.readParcelable(
                    SatelliteSessionStats.class.getClassLoader());
                    SatelliteSessionStats.class.getClassLoader(), SatelliteSessionStats.class);
            datagramStats.put(key, value);
        }
    }