diff --git a/profile/src/main/java/no/nordicsemi/android/toolbox/profile/repository/channelSounding/RangingSessionStartTechnology.kt b/profile/src/main/java/no/nordicsemi/android/toolbox/profile/repository/channelSounding/RangingSessionStartTechnology.kt deleted file mode 100644 index 087e7a5c..00000000 --- a/profile/src/main/java/no/nordicsemi/android/toolbox/profile/repository/channelSounding/RangingSessionStartTechnology.kt +++ /dev/null @@ -1,24 +0,0 @@ -package no.nordicsemi.android.toolbox.profile.repository.channelSounding - -enum class RangingSessionStartTechnology(val technology: Int) { - UWB(0), - BLE_CS(1), - WIFI_NAN_RTT(2), - BLE_RSSI(3), ; - - override fun toString(): String { - return when (technology) { - UWB.technology -> "UWB" - BLE_CS.technology -> "BLE CS" - WIFI_NAN_RTT.technology -> "WIFI NAN RTT" - BLE_RSSI.technology -> "BLE RSSI" - else -> "Unknown technology" - } - } - - companion object { - fun getTechnology(technology: Int): String { - return entries.firstOrNull { it.technology == technology }.toString() - } - } -} \ No newline at end of file