mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-04 05:17:36 +03:00
fix: Small warning
This commit is contained in:
parent
ee1a0a53a6
commit
b713237ec3
3 changed files with 11 additions and 14 deletions
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue