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

Commit fc13cb32 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

Change-Id: Iebc47e89f1f0c8391935cb4b61190def97e87d35
parents 4a365877 0a45ff59
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 {