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

Commit c4506d3d authored by Wink Saville's avatar Wink Saville Committed by Android (Google) Code Review
Browse files

Merge "Add a new Item constructor for use by DSDS Stk." into lmp-sprout-dev

parents 3122b0f0 f92eac81
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -34,9 +34,13 @@ public class Item implements Parcelable {
    public Bitmap icon;

    public Item(int id, String text) {
        this(id, text, null);
    }

    public Item(int id, String text, Bitmap icon) {
        this.id = id;
        this.text = text;
        this.icon = null;
        this.icon = icon;
    }

    public Item(Parcel in) {