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

Commit 1dfad7f2 authored by Steve McKay's avatar Steve McKay
Browse files

Use correct classloader in State CREATOR.

Change-Id: I0bfe34218a2d9806e7493ffd6ecda3543847ce39
Test: Build and run and small and med unit.
parent 48e3eea0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ public class State implements android.os.Parcelable {
            in.readMap(state.dirConfigs, loader);
            in.readList(state.excludedAuthorities, loader);
            state.openableOnly = in.readInt() != 0;
            state.sortModel = in.readParcelable(getClass().getClassLoader());
            state.sortModel = in.readParcelable(loader);
            return state;
        }