delete temporary export file when finished

This commit is contained in:
David Creswick 2025-01-05 16:18:01 -06:00
parent 05a415bb38
commit d98e23a1e5

View file

@ -34,6 +34,8 @@ public class ExportTask extends ProgressDialogTask<ExportTask.Params, Exception>
return null;
} catch (IOException e) {
return e;
} finally {
boolean ignored = params.getFile().delete();
}
}