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

Commit 549578ab authored by Steve McKay's avatar Steve McKay Committed by android-build-merger
Browse files

Use correct classloader in State CREATOR.

am: 1dfad7f2

Change-Id: If315c47901cdf1afc825113d040074d0b284bf8a
parents 616c5591 1dfad7f2
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;
        }