Skip to content

Commit

Permalink
fixed loopUUIDLiveData to accept nullable type
Browse files Browse the repository at this point in the history
  • Loading branch information
xcadrik committed Apr 26, 2023
1 parent 34a5f30 commit 4027981
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MeasurementViewModel @Inject constructor(
private val _downloadGraphLiveData = MutableLiveData<List<GraphItemRecord>>()
private val _uploadGraphLiveData = MutableLiveData<List<GraphItemRecord>>()
private val _qosProgressLiveData = MutableLiveData<Map<QoSTestResultEnum, Int>>()
private val _loopUUIDLiveData = MutableLiveData<String>()
private val _loopUUIDLiveData = MutableLiveData<String?>()
private val _timeToNextTestElapsedLiveData = MutableLiveData<String>()
private val _timeProgressPercentsLiveData = MutableLiveData<Int>()

Expand Down

0 comments on commit 4027981

Please sign in to comment.