updated settings cleanup to prevent issue with the update process

Former-commit-id: deba93c236f7f441df73e44ec57a4fc52260f965
This commit is contained in:
Jeremy Long
2014-05-03 10:59:47 -04:00
parent 8cbf3ffc6b
commit 6963d66240
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;
}