replace custom extension functions with the filepickers ones

This commit is contained in:
tibbi
2016-11-21 20:39:56 +01:00
parent 2567680dac
commit fb003eaee9
4 changed files with 4 additions and 15 deletions

View File

@ -1,6 +0,0 @@
package com.simplemobiletools.notes.extensions
import android.content.Context
import android.widget.Toast
fun Context.toast(id: Int) = Toast.makeText(this, id, Toast.LENGTH_SHORT).show()

View File

@ -1,5 +0,0 @@
package com.simplemobiletools.notes.extensions
import android.widget.EditText
val EditText.value: String get() = text.toString().trim()