Setup standard answers, fixes, improvements

This commit is contained in:
M66B
2018-08-27 07:06:03 +00:00
parent c396d68473
commit 3261bdae63
18 changed files with 1446 additions and 9 deletions

View File

@@ -126,7 +126,7 @@ public class EntityMessage implements Serializable {
BufferedWriter out = null;
try {
out = new BufferedWriter(new FileWriter(file));
out.write(body);
out.write(body == null ? "" : body);
} finally {
if (out != null)
try {