Remove trailing comma for old Kotlin compiler before S

This commit is contained in:
TheScarastic 2022-08-09 10:46:52 +00:00 committed by Peter Cai
parent cacab05892
commit 5050b948b2
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ data class EuiccChannelInfo(
val cardId: Int, val cardId: Int,
val name: String, val name: String,
val imei: String, val imei: String,
val removable: Boolean, val removable: Boolean
) )
abstract class EuiccChannel( abstract class EuiccChannel(
@ -24,4 +24,4 @@ abstract class EuiccChannel(
abstract val valid: Boolean abstract val valid: Boolean
abstract fun close() abstract fun close()
} }

View File

@ -9,7 +9,7 @@ import java.lang.Exception
class OmapiChannel private constructor( class OmapiChannel private constructor(
info: EuiccChannelInfo, info: EuiccChannelInfo,
private val channel: Channel, private val channel: Channel
) : EuiccChannel(info) { ) : EuiccChannel(info) {
companion object { companion object {
private const val TAG = "OmapiChannel" private const val TAG = "OmapiChannel"