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

Commit c8bac803 authored by Jason Monk's avatar Jason Monk Committed by Android (Google) Code Review
Browse files

Merge "Guard against monkey crash" into nyc-dev

parents e610e288 da63ceb7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -65,7 +65,7 @@ public class SettingsDrawerAdapter extends BaseAdapter {
    }
    }


    public Tile getTile(int position) {
    public Tile getTile(int position) {
        return mItems.get(position).tile;
        return mItems.get(position) != null ? mItems.get(position).tile : null;
    }
    }


    @Override
    @Override