EuiccChannelManager: make internal function protected

This commit is contained in:
Peter Cai 2023-11-28 22:12:49 -05:00
parent 366b4bc049
commit 825b33b1b9

View file

@ -48,7 +48,7 @@ open class EuiccChannelManager(protected val context: Context) {
}
}
open fun tryOpenEuiccChannelPrivileged(uiccInfo: UiccCardInfo, channelInfo: EuiccChannelInfo): EuiccChannel? {
protected open fun tryOpenEuiccChannelPrivileged(uiccInfo: UiccCardInfo, channelInfo: EuiccChannelInfo): EuiccChannel? {
// No-op when unprivileged
return null
}