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

Commit d95198eb authored by Sanket Padawe's avatar Sanket Padawe
Browse files

Remove checks to support new sim color selection.

Remove checks to support new sim color selection in multi-sim settings UI.

Change-Id: I26da0a79f5b1edf829fc5d46af2c0c23962226b8
parent e8d9810c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -470,7 +470,7 @@ public class SubscriptionManager implements BaseColumns {

    /**
     * Set SIM color by simInfo index
     * @param color the color of the SIM
     * @param color the rgb value of color of the SIM
     * @param subId the unique SubInfoRecord index in database
     * @return the number of records updated
     * @hide
@@ -478,7 +478,7 @@ public class SubscriptionManager implements BaseColumns {
    public static int setColor(int color, int subId) {
        if (VDBG) logd("[setColor]+ color:" + color + " subId:" + subId);
        int size = sSimBackgroundDarkRes.length;
        if (!isValidSubId(subId) || color < 0 || color >= size) {
        if (!isValidSubId(subId)) {
            logd("[setColor]- fail");
            return -1;
        }