removing a weird helper function

This commit is contained in:
tibbi
2018-11-07 17:10:00 +01:00
parent 54fa5096ee
commit 32837ebb38
2 changed files with 1 additions and 3 deletions

View File

@ -235,7 +235,7 @@ class MainActivity : SimpleActivity() {
private fun handleUri(uri: Uri) {
val id = dbHelper.getNoteId(uri.path)
if (dbHelper.isValidId(id)) {
if (id > 0) {
updateSelectedNote(id)
return
}