delete temporary export file when finished

This commit is contained in:
David Creswick
2025-01-05 16:19:45 -06:00
parent 05a415bb38
commit d98e23a1e5
@@ -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();
}
}