Konsist: no field should have 'm' prefix, and fix new detected issues.

This commit is contained in:
Benoit Marty 2023-10-10 22:09:57 +02:00
parent 4338d821e5
commit 7c5a41f03d
4 changed files with 33 additions and 19 deletions

View file

@ -56,7 +56,7 @@ class DefaultPushHandler @Inject constructor(
private val coroutineScope = CoroutineScope(SupervisorJob())
// UI handler
private val mUIHandler by lazy {
private val uiHandler by lazy {
Handler(Looper.getMainLooper())
}
@ -81,7 +81,7 @@ class DefaultPushHandler @Inject constructor(
return
}
mUIHandler.post {
uiHandler.post {
coroutineScope.launch(Dispatchers.IO) { handleInternal(pushData) }
}
}