kotlin lints

This commit is contained in:
Milos Kozak 2023-08-27 11:33:03 +02:00
parent 6b4ee247b3
commit c6595e0a2a
2 changed files with 5 additions and 4 deletions

View file

@ -6,6 +6,7 @@ import info.nightscout.rx.logging.AAPSLogger
import info.nightscout.rx.logging.LTag import info.nightscout.rx.logging.LTag
import java.nio.ByteBuffer import java.nio.ByteBuffer
@Suppress("unused")
enum class EapCode(val code: Byte) { enum class EapCode(val code: Byte) {
REQUEST(1), REQUEST(1),
RESPONSE(2), RESPONSE(2),
@ -20,7 +21,7 @@ enum class EapCode(val code: Byte) {
} }
} }
data class EapMessage( class EapMessage(
val code: EapCode, val code: EapCode,
val identifier: Byte, val identifier: Byte,
val subType: Byte = 0, val subType: Byte = 0,
@ -38,7 +39,7 @@ data class EapMessage(
} }
val totalSize = HEADER_SIZE + attrSize val totalSize = HEADER_SIZE + attrSize
var bb = ByteBuffer val bb = ByteBuffer
.allocate(totalSize) .allocate(totalSize)
.put(code.code) .put(code.code)
.put(identifier) .put(identifier)
@ -57,7 +58,7 @@ data class EapMessage(
private const val HEADER_SIZE = 8 private const val HEADER_SIZE = 8
private const val SUBTYPE_AKA_CHALLENGE = 1.toByte() private const val SUBTYPE_AKA_CHALLENGE = 1.toByte()
const val SUBTYPE_SYNCRONIZATION_FAILURE = 4.toByte() const val SUBTYPE_SYNCHRONIZATION_FAILURE = 4.toByte()
private const val AKA_PACKET_TYPE = 0x17.toByte() private const val AKA_PACKET_TYPE = 0x17.toByte()

View file

@ -146,7 +146,7 @@ class SessionEstablisher(
} }
private fun isResynchronization(eapMsg: EapMessage): EapSqn? { private fun isResynchronization(eapMsg: EapMessage): EapSqn? {
if (eapMsg.subType != EapMessage.SUBTYPE_SYNCRONIZATION_FAILURE || if (eapMsg.subType != EapMessage.SUBTYPE_SYNCHRONIZATION_FAILURE ||
eapMsg.attributes.size != 1 || eapMsg.attributes.size != 1 ||
eapMsg.attributes[0] !is EapAkaAttributeAuts eapMsg.attributes[0] !is EapAkaAttributeAuts
) )