Fix save config
This commit is contained in:
parent
5b8699cf9d
commit
9a0966322e
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ public class Configuration {
|
|||
field.setAccessible(true);
|
||||
if(field.getName().startsWith("_")) continue;
|
||||
Object value = field.get(this);
|
||||
writer.write(field.getName() + "=" + value);
|
||||
writer.write(field.getName() + "=" + value+"\n");
|
||||
}
|
||||
writer.flush();
|
||||
writer.close();
|
||||
|
|
Loading…
Add table
Reference in a new issue