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

Commit 24ba89da authored by Holly Jiuyu Sun's avatar Holly Jiuyu Sun Committed by android-build-merger
Browse files

Merge "Make getIEuiccContronller() protected and non-static for CTS."

am: 2378a2ca

Change-Id: If8d1bc3db4be3f2d7e79f9c508ea3db3197159e9
parents dae9a8e8 2378a2ca
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ import android.annotation.IntDef;
import android.annotation.Nullable;
import android.annotation.SdkConstant;
import android.annotation.SystemApi;
import android.annotation.TestApi;
import android.app.Activity;
import android.app.PendingIntent;
import android.content.Context;
@@ -598,7 +599,11 @@ public class EuiccManager {
        }
    }

    private static IEuiccController getIEuiccController() {
    /**
     * @hide
     */
    @TestApi
    protected IEuiccController getIEuiccController() {
        return IEuiccController.Stub.asInterface(ServiceManager.getService("econtroller"));
    }
}