dash ble: remove unused class

This commit is contained in:
Andrei Vereha 2021-03-14 12:44:24 +01:00
parent eda52857e5
commit eff6247f77

View file

@ -1,18 +0,0 @@
package info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.session
import java.nio.ByteBuffer
/***
* Eap-Aka start session sequence.
* Incremented for each new session
*/
class EapSqn(var sqn: Long) {
fun increment(): ByteArray {
sqn++
return ByteBuffer.allocate(8)
.putLong(sqn)
.array()
.copyOfRange(2, 8)
}
}