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

Commit 6d1afc40 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

Change-Id: I355e18ebb3aaf619d80c068f1892607b598e1f9b
parents eb9fffed fc13cb32
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 {