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);
|
field.setAccessible(true);
|
||||||
if(field.getName().startsWith("_")) continue;
|
if(field.getName().startsWith("_")) continue;
|
||||||
Object value = field.get(this);
|
Object value = field.get(this);
|
||||||
writer.write(field.getName() + "=" + value);
|
writer.write(field.getName() + "=" + value+"\n");
|
||||||
}
|
}
|
||||||
writer.flush();
|
writer.flush();
|
||||||
writer.close();
|
writer.close();
|
||||||
|
|
Loading…
Add table
Reference in a new issue