mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2025-01-08 08:08:05 +01:00
Add space at start of comments when writing config
This commit is contained in:
parent
e8034e20b0
commit
2426aef969
@ -19,7 +19,7 @@ public class FieldParser {
|
||||
StringBuilder builder = new StringBuilder(50);
|
||||
|
||||
if (field.isAnnotationPresent(ConfigurationComment.class)) {
|
||||
builder.append('#').append(field.getAnnotation(ConfigurationComment.class).value()).append('\n');
|
||||
builder.append("# ").append(field.getAnnotation(ConfigurationComment.class).value()).append('\n');
|
||||
}
|
||||
|
||||
ValueParser parser = Configuration.getParser(field);
|
||||
|
Loading…
Reference in New Issue
Block a user