fix: Small warning

This commit is contained in:
J-Jamet 2023-05-14 13:14:27 +02:00
parent ee1a0a53a6
commit b713237ec3
3 changed files with 11 additions and 14 deletions

View file

@ -73,7 +73,7 @@ object UriHelper {
fun Uri.withFileScheme(): Boolean {
val scheme = this.scheme
if (scheme == null || scheme.isEmpty() || scheme.lowercase(Locale.ENGLISH) == "file") {
if (scheme.isNullOrEmpty() || scheme.lowercase(Locale.ENGLISH) == "file") {
return true
}
return false
@ -87,5 +87,5 @@ object UriHelper {
return false
}
private const val TAG = "UriUtilDatabase"
private const val TAG = "UriHelper"
}