Fix linting issues
This commit is contained in:
parent
689c5cff3f
commit
5b38bdb1c1
1 changed files with 3 additions and 3 deletions
|
@ -39,11 +39,11 @@ constructor(
|
|||
}
|
||||
}
|
||||
|
||||
private var _isOffline = sharedPreferences.getBoolean(Constants.PREF_OFFLINE_MODE, false);
|
||||
private var _isOffline = sharedPreferences.getBoolean(Constants.PREF_OFFLINE_MODE, false)
|
||||
var isOffline
|
||||
get() = _isOffline;
|
||||
get() = _isOffline
|
||||
set(value) {
|
||||
_isOffline = value;
|
||||
_isOffline = value
|
||||
}
|
||||
|
||||
// Appearance
|
||||
|
|
Loading…
Reference in a new issue