0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-20 03:52:16 +02:00

Remove unnecessary type declarations

This commit is contained in:
Markus Fisch 2022-03-21 22:17:29 +01:00
parent 767860ab07
commit 97838ec7c4

View File

@ -143,7 +143,7 @@ class Preferences {
apply(OPEN_WITH_URL, value)
field = value
}
var sendScanActive: Boolean = false
var sendScanActive = false
set(value) {
apply(SEND_SCAN_ACTIVE, value)
field = value
@ -168,7 +168,7 @@ class Preferences {
apply(INDEX_OF_LAST_SELECTED_FORMAT, value)
field = value
}
var forceCompat: Boolean = false
var forceCompat = false
set(value) {
// Since the app may be about to crash when forceCompat is set,
// it's necessary to `commit()` this synchronously.