Add space at start of comments when writing config

This commit is contained in:
Phoenix616 2020-04-17 15:10:09 +01:00
parent e8034e20b0
commit 2426aef969
1 changed files with 1 additions and 1 deletions

View File

@ -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);