Skip to content

Commit

Permalink
Write the correct default value for StringList comments in the config
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Aug 15, 2014
1 parent ba69a1a commit 53294b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ public String[] getStringList(String name, String category, String[] defaultValu
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();
}

Expand Down

0 comments on commit 53294b8

Please sign in to comment.