format: remove trailing commas
This commit is contained in:
parent
e90bda0234
commit
ada3560f49
|
@ -47,7 +47,7 @@ class EapAkaExchanger(private val aapsLogger: AAPSLogger, private val msgIO: Mes
|
||||||
return SessionKeys(
|
return SessionKeys(
|
||||||
milenage.ck,
|
milenage.ck,
|
||||||
controllerIV + nodeIV,
|
controllerIV + nodeIV,
|
||||||
sqn,
|
sqn
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ class EapAkaExchanger(private val aapsLogger: AAPSLogger, private val msgIO: Mes
|
||||||
val attributes = arrayOf(
|
val attributes = arrayOf(
|
||||||
EapAkaAttributeAutn(milenage.autn),
|
EapAkaAttributeAutn(milenage.autn),
|
||||||
EapAkaAttributeRand(milenage.rand),
|
EapAkaAttributeRand(milenage.rand),
|
||||||
EapAkaAttributeCustomIV(controllerIV),
|
EapAkaAttributeCustomIV(controllerIV)
|
||||||
)
|
)
|
||||||
|
|
||||||
val eapMsg = EapMessage(
|
val eapMsg = EapMessage(
|
||||||
|
@ -99,7 +99,7 @@ class EapAkaExchanger(private val aapsLogger: AAPSLogger, private val msgIO: Mes
|
||||||
val eapMsg = EapMessage(
|
val eapMsg = EapMessage(
|
||||||
code = EapCode.SUCCESS,
|
code = EapCode.SUCCESS,
|
||||||
attributes = arrayOf(),
|
attributes = arrayOf(),
|
||||||
identifier = 44, // TODO: find what value we need here
|
identifier = 44 // TODO: find what value we need here
|
||||||
)
|
)
|
||||||
|
|
||||||
return MessagePacket(
|
return MessagePacket(
|
||||||
|
|
Loading…
Reference in a new issue