This commit is contained in:
Christian Durán Carvajal 2020-01-17 18:33:59 +00:00 committed by GitHub
commit 39ec1512c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -489,7 +489,7 @@ final class Setting {
/// read as string value
@property inout(string) str() inout {
@property string str() {
final switch(_type) with(SettingType) {
case STRING:
return _store.str;
@ -510,7 +510,7 @@ final class Setting {
}
}
/// read as string value
inout(string) strDef(string defValue) inout {
inout (string) strDef(inout (string) defValue) {
final switch(_type) with(SettingType) {
case STRING:
return _store.str;
@ -2313,5 +2313,3 @@ final class Setting {
}
}
}