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

Commit 0d60e906 authored by Wink Saville's avatar Wink Saville Committed by Android Git Automerger
Browse files

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

* commit 'c4506d3d':
  Add a new Item constructor for use by DSDS Stk.
parents 0601551e c4506d3d
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) {