Merge pull request #1330 from bonii-xx/master

Write the correct default value for StringList comments in the config
This commit is contained in:
LexManos 2014-08-15 13:56:15 -07:00
commit 1dadcb12be

View file

@ -1596,7 +1596,7 @@ public class Configuration
Property prop = this.get(category, name, defaultValue);
prop.setLanguageKey(langKey);
prop.setValidValues(validValues);
prop.comment = comment + " [default: " + defaultValue + "]";
prop.comment = comment + " [default: " + prop.getDefault() + "]";
return prop.getStringList();
}