mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-27 11:09:06 +00:00
Fix
This commit is contained in:
@@ -321,7 +321,14 @@ public class IO {
|
||||
}
|
||||
|
||||
public static void writeAll(File f, Object c) throws IOException {
|
||||
f.getParentFile().mkdirs();
|
||||
try {
|
||||
f.getParentFile().mkdirs();
|
||||
}
|
||||
catch(Throwable ignored)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
PrintWriter pw = new PrintWriter(new FileWriter(f));
|
||||
pw.println(c.toString());
|
||||
pw.close();
|
||||
|
||||
Reference in New Issue
Block a user