Removed duplicate helper

This commit is contained in:
Viktor De Pasquale 2019-07-10 18:44:05 +02:00 committed by John Wu
parent 8d50dfd93c
commit 21ed759e53

View File

@ -9,7 +9,6 @@ import android.content.pm.PackageManager
import android.content.pm.PackageManager.*
import android.net.Uri
import android.provider.OpenableColumns
import android.widget.Toast
import com.topjohnwu.magisk.App
import java.io.File
import java.io.FileNotFoundException
@ -102,10 +101,4 @@ fun File.mv(destination: File) {
fun String.toFile() = File(this)
fun Intent.chooser(title: String = "Pick an app") = Intent.createChooser(this, title)
fun Context.toast(message: Int, duration: Int = Toast.LENGTH_SHORT) =
toast(getString(message), duration)
fun Context.toast(message: CharSequence, duration: Int = Toast.LENGTH_SHORT) =
Toast.makeText(this, message, duration)
fun Intent.chooser(title: String = "Pick an app") = Intent.createChooser(this, title)