File tree 1 file changed +0
-9
lines changed
app/src/main/java/org/thoughtcrime/securesms/linkdevice
1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ import kotlinx.coroutines.flow.asStateFlow
9
9
import kotlinx.coroutines.flow.update
10
10
import kotlinx.coroutines.launch
11
11
import org.signal.core.util.logging.Log
12
- import org.thoughtcrime.securesms.dependencies.AppDependencies
13
- import org.thoughtcrime.securesms.jobmanager.JobTracker
14
12
import org.thoughtcrime.securesms.jobs.LinkedDeviceInactiveCheckJob
15
13
import org.thoughtcrime.securesms.linkdevice.LinkDeviceRepository.LinkDeviceResult
16
14
import org.thoughtcrime.securesms.linkdevice.LinkDeviceRepository.getPlaintextDeviceName
@@ -35,17 +33,10 @@ class LinkDeviceViewModel : ViewModel() {
35
33
private val _state = MutableStateFlow (LinkDeviceSettingsState ())
36
34
val state = _state .asStateFlow()
37
35
38
- private lateinit var listener: JobTracker .JobListener
39
-
40
36
fun initialize () {
41
37
loadDevices()
42
38
}
43
39
44
- override fun onCleared () {
45
- super .onCleared()
46
- AppDependencies .jobManager.removeListener(listener)
47
- }
48
-
49
40
fun setDeviceToRemove (device : Device ? ) {
50
41
_state .update { it.copy(deviceToRemove = device) }
51
42
}
You can’t perform that action at this time.
0 commit comments