fix CI warning

This commit is contained in:
valere 2023-02-06 10:04:27 +01:00
parent c0fb4e88cd
commit fdd7023dd5
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ import java.io.File
class MigrateEAtoEROperation {
fun execute(cryptoRealm: RealmConfiguration, sessionFilesDir: File, passphrase: String?): File {
Timber.v("Not used in kotlin crypto $cryptoRealm")
// to remove unused warning
Timber.v("Not used in kotlin crypto $cryptoRealm ${"*".repeat(passphrase?.length ?: 0)}")
// no op in kotlinCrypto
return sessionFilesDir
}