rename to isDbRoomMigrated and setDbRoomMigrated for proper kotlin interoperability

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-06-23 18:25:51 +02:00
parent afbec06ad3
commit 359104d6ba
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -284,10 +284,10 @@ public interface AppPreferences {
@KeyByString("db_cypher_v4_upgrade")
@DefaultValue(R.bool.value_true)
boolean getIsDbCypherToUpgrade();
boolean isDbCypherToUpgrade();
@KeyByString("db_cypher_v4_upgrade")
void setIsDbCypherToUpgrade(boolean value);
void setDbCypherToUpgrade(boolean value);
@KeyByString("db_room_migrated")
@DefaultValue(R.bool.value_false)