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

Commit f4bb763f authored by Maurice Chu's avatar Maurice Chu Committed by Android (Google) Code Review
Browse files

Merge "Fix binding editors when state is null" into jb-mr1-dev

parents 20578b8f 5671c7e7
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -675,6 +675,12 @@ public class ContactEditorFragment extends Fragment implements
    }

    private void bindEditors() {
        // bindEditors() can only bind views if there is data in mState, so immediately return
        // if mState is null
        if (mState == null) {
            return;
        }

        // Sort the editors
        Collections.sort(mState, mComparator);