File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
presentation/src/main/java/com/whyranoid/presentation/running Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import com.whyranoid.presentation.databinding.ActivityRunningBinding
17
17
import com.whyranoid.presentation.util.dateToString
18
18
import com.whyranoid.presentation.util.repeatWhenUiStarted
19
19
import dagger.hilt.android.AndroidEntryPoint
20
- import java.util.Date
20
+ import java.util.*
21
21
22
22
@AndroidEntryPoint
23
23
internal class RunningActivity :
@@ -85,8 +85,8 @@ internal class RunningActivity :
85
85
}
86
86
87
87
override fun onPause () {
88
- super .onPause()
89
88
mapView.onPause()
89
+ super .onPause()
90
90
}
91
91
92
92
override fun onSaveInstanceState (outState : Bundle ) {
@@ -95,13 +95,13 @@ internal class RunningActivity :
95
95
}
96
96
97
97
override fun onStop () {
98
- super .onStop()
99
98
mapView.onStop()
99
+ super .onStop()
100
100
}
101
101
102
102
override fun onDestroy () {
103
- super .onDestroy()
104
103
mapView.onDestroy()
104
+ super .onDestroy()
105
105
}
106
106
107
107
override fun onLowMemory () {
You can’t perform that action at this time.
0 commit comments