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

Commit b01856da authored by Jeff Hamilton's avatar Jeff Hamilton Committed by Android (Google) Code Review
Browse files

Merge "Delivering null cursor to loader callbacks." into honeycomb

parents 9ed99405 fd119e98
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -353,7 +353,7 @@ class LoaderManagerImpl extends LoaderManager {
            
            // Notify of the new data so the app can switch out the old data before
            // we try to destroy it.
            if (mData != data) {
            if (data == null || mData != data) {
                mData = data;
                if (mStarted) {
                    callOnLoadFinished(loader, data);