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 name: String,
val imei: String,
val removable: Boolean,
val removable: Boolean
)
abstract class EuiccChannel(

View File

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