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

Commit ce2831a0 authored by Taesu Lee's avatar Taesu Lee Committed by android-build-merger
Browse files

Merge "Lock correct object for sync in MultiSimSettingController" am: 0a45ff59 am: fc13cb32

am: 6d1afc40

Change-Id: I530380fc01029cc8428e073144cd1dfbfe1696af
parents 7f1111d4 6d1afc40
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -153,7 +153,7 @@ public class MultiSimSettingController extends Handler {
     * Return the singleton or create one if not existed.
     */
    public static MultiSimSettingController getInstance() {
        synchronized (SubscriptionController.class) {
        synchronized (MultiSimSettingController.class) {
            if (sInstance == null) {
                Log.wtf(LOG_TAG, "getInstance null");
            }
@@ -166,7 +166,7 @@ public class MultiSimSettingController extends Handler {
     * Init instance of MultiSimSettingController.
     */
    public static MultiSimSettingController init(Context context, SubscriptionController sc) {
        synchronized (SubscriptionController.class) {
        synchronized (MultiSimSettingController.class) {
            if (sInstance == null) {
                sInstance = new MultiSimSettingController(context, sc);
            } else {