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

Commit 44b50ad3 authored by Selim Cinek's avatar Selim Cinek Committed by Android (Google) Code Review
Browse files

Merge "Fixed build breakage due to api change." into lmp-mr1-dev

parents 6ad85792 334bd70f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ import android.os.Handler;
import android.os.Message;
import android.os.RemoteException;
import android.os.ServiceManager;
import android.os.UserHandle;
import android.service.notification.Condition;
import android.service.notification.IConditionListener;
import android.service.notification.ZenModeConfig;
@@ -61,7 +62,7 @@ public class ZenModeConditionSelection extends RadioGroup {
        b.setChecked(true);
        for (int i = ZenModeConfig.MINUTE_BUCKETS.length - 1; i >= 0; --i) {
            handleCondition(ZenModeConfig.toTimeCondition(mContext,
                    ZenModeConfig.MINUTE_BUCKETS[i]));
                    ZenModeConfig.MINUTE_BUCKETS[i], UserHandle.myUserId()));
        }
    }