Don't use Kotlin reflection if not really necessary
This commit is contained in:
parent
15969e0d88
commit
fa617fbaae
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ internal class DocumentsProviderKVBackup(
|
||||||
}
|
}
|
||||||
if (key.length > MAX_KEY_LENGTH_NEXTCLOUD) {
|
if (key.length > MAX_KEY_LENGTH_NEXTCLOUD) {
|
||||||
Log.e(
|
Log.e(
|
||||||
DocumentsProviderKVBackup::class.simpleName,
|
DocumentsProviderKVBackup::class.java.simpleName,
|
||||||
"Key $key for ${packageInfo.packageName} is too long: ${key.length} chars."
|
"Key $key for ${packageInfo.packageName} is too long: ${key.length} chars."
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue