minor code style update + imports
This commit is contained in:
parent
ea637c529a
commit
636c7cb8c5
1 changed files with 3 additions and 3 deletions
|
|
@ -1,9 +1,7 @@
|
||||||
package com.simplemobiletools.smsmessenger.adapters
|
package com.simplemobiletools.smsmessenger.adapters
|
||||||
|
|
||||||
import android.content.ActivityNotFoundException
|
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.graphics.Typeface
|
import android.graphics.Typeface
|
||||||
import android.net.Uri
|
|
||||||
import android.text.TextUtils
|
import android.text.TextUtils
|
||||||
import android.util.TypedValue
|
import android.util.TypedValue
|
||||||
import android.view.Menu
|
import android.view.Menu
|
||||||
|
|
@ -129,7 +127,9 @@ class ConversationsAdapter(
|
||||||
|
|
||||||
private fun dialNumber() {
|
private fun dialNumber() {
|
||||||
val conversation = getSelectedItems().firstOrNull() ?: return
|
val conversation = getSelectedItems().firstOrNull() ?: return
|
||||||
activity.dialNumber(conversation.phoneNumber) { finishActMode() }
|
activity.dialNumber(conversation.phoneNumber) {
|
||||||
|
finishActMode()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun copyNumberToClipboard() {
|
private fun copyNumberToClipboard() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue