`get() = Job() + Dispatchers.Main` is not the same...
# android
e
get() = Job() + Dispatchers.Main
is not the same as
get() = job + Dispatchers.Main
The second one always uses the same
job
instance, while the first one is not.
1
👍 2