Merge pull request #1330 from bonii-xx/master
Write the correct default value for StringList comments in the config
This commit is contained in:
commit
1dadcb12be
1 changed files with 1 additions and 1 deletions
|
@ -1596,7 +1596,7 @@ public class Configuration
|
||||||
Property prop = this.get(category, name, defaultValue);
|
Property prop = this.get(category, name, defaultValue);
|
||||||
prop.setLanguageKey(langKey);
|
prop.setLanguageKey(langKey);
|
||||||
prop.setValidValues(validValues);
|
prop.setValidValues(validValues);
|
||||||
prop.comment = comment + " [default: " + defaultValue + "]";
|
prop.comment = comment + " [default: " + prop.getDefault() + "]";
|
||||||
return prop.getStringList();
|
return prop.getStringList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue