This commit is contained in:
M66B
2023-12-13 11:42:38 +01:00
parent f8b15e2d24
commit a0ffa726d4
13 changed files with 12 additions and 71 deletions

View File

@@ -2731,9 +2731,9 @@ public class Helper {
}
static void writeText(File file, String content) throws IOException {
// TODO CASA
try (FileOutputStream out = new FileOutputStream(file)) {
Log.write(out, content);
if (content != null)
out.write(content.getBytes());
}
}