From fa617fbaae40e97782f0fe832f1483ac71d81f9e Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Mon, 14 Sep 2020 14:00:23 -0300 Subject: [PATCH] Don't use Kotlin reflection if not really necessary --- .../seedvault/plugins/saf/DocumentsProviderKVBackup.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/stevesoltys/seedvault/plugins/saf/DocumentsProviderKVBackup.kt b/app/src/main/java/com/stevesoltys/seedvault/plugins/saf/DocumentsProviderKVBackup.kt index ca617764..6b5d71a3 100644 --- a/app/src/main/java/com/stevesoltys/seedvault/plugins/saf/DocumentsProviderKVBackup.kt +++ b/app/src/main/java/com/stevesoltys/seedvault/plugins/saf/DocumentsProviderKVBackup.kt @@ -47,7 +47,7 @@ internal class DocumentsProviderKVBackup( } if (key.length > MAX_KEY_LENGTH_NEXTCLOUD) { Log.e( - DocumentsProviderKVBackup::class.simpleName, + DocumentsProviderKVBackup::class.java.simpleName, "Key $key for ${packageInfo.packageName} is too long: ${key.length} chars." ) }