format: remove trailing commas

This commit is contained in:
Andrei Vereha 2021-03-02 22:20:30 +01:00
parent e90bda0234
commit ada3560f49

View file

@ -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(