updated settings cleanup to prevent issue with the update process

Former-commit-id: e883b7d37c583b581b41da368dbe9b8d1bafae89
This commit is contained in:
Jeremy Long
2014-05-03 10:59:47 -04:00
parent 14b4d64244
commit 51eba8da73
2 changed files with 2 additions and 2 deletions

View File

@@ -203,7 +203,7 @@ public class CallableDownloadTask implements Callable<Future<ProcessTask>> {
LOGGER.log(Level.WARNING, msg);
LOGGER.log(Level.FINE, "Download Task Failed", ex);
} finally {
Settings.cleanup();
Settings.cleanup(false);
}
return null;
}

View File

@@ -119,7 +119,7 @@ public class ProcessTask implements Callable<ProcessTask> {
} catch (UpdateException ex) {
this.exception = ex;
} finally {
Settings.cleanup();
Settings.cleanup(false);
}
return this;
}