- avoided a few compiler warnings about null values
This commit is contained in:
@@ -23,7 +23,7 @@ class ContactsActivity : AppCompatActivity() {
|
||||
|
||||
val listView = findViewById(R.id.contacts) as ListView
|
||||
|
||||
val aor = intent.extras.getString("aor")
|
||||
val aor = intent.getStringExtra("aor")!!
|
||||
clAdapter = ContactListAdapter(this, Contact.contacts(), aor)
|
||||
listView.adapter = clAdapter
|
||||
listView.isLongClickable = true
|
||||
|
||||
Reference in New Issue
Block a user