ソースを参照

EuiccChannelManager: make internal function protected

Peter Cai 2 年 前
コミット
825b33b1b9

+ 1 - 1
app-common/src/main/java/im/angry/openeuicc/core/EuiccChannelManager.kt

@@ -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
         // No-op when unprivileged
         return null
         return null
     }
     }