remove unused callback in ImportMessagesDialog

This commit is contained in:
darthpaul 2021-09-24 15:07:40 +01:00
parent 3cd84e42bc
commit 24c08613d9
2 changed files with 2 additions and 11 deletions

View file

@ -398,13 +398,7 @@ class MainActivity : SimpleActivity() {
}
private fun showImportEventsDialog(path: String) {
ImportMessagesDialog(this, path) { refresh ->
if (refresh) {
runOnUiThread {
}
}
}
ImportMessagesDialog(this, path)
}
private fun tryImportMessagesFromFile(uri: Uri) {