mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-02-22 02:55:26 +00:00
Remove unused method
This commit is contained in:
parent
98a0818db2
commit
0e329ff92b
1 changed files with 0 additions and 8 deletions
|
@ -37,14 +37,6 @@ class Settings {
|
|||
_set('logWrap', enabled);
|
||||
}
|
||||
|
||||
String _getString(String key, String defaultValue) {
|
||||
final val = _settings[key];
|
||||
if (val is String) {
|
||||
return val;
|
||||
}
|
||||
return defaultValue;
|
||||
}
|
||||
|
||||
bool _getBool(String key, bool defaultValue) {
|
||||
final val = _settings[key];
|
||||
if (val is bool) {
|
||||
|
|
Loading…
Reference in a new issue