removed call to BatchUpdateTask

Former-commit-id: 90e72fcc67d2c2773afb6b4e8a1ba2bef3636a19
This commit is contained in:
Jeremy Long
2013-11-23 21:59:11 -05:00
parent 5b9fe065d7
commit 8c38a0e6cc

View File

@@ -50,11 +50,11 @@ public final class UpdateTaskFactory {
public static UpdateTask getUpdateTask() throws MalformedURLException, DownloadFailedException, UpdateException { public static UpdateTask getUpdateTask() throws MalformedURLException, DownloadFailedException, UpdateException {
final UpdateTask task; final UpdateTask task;
final DataStoreMetaInfo properties = new DataStoreMetaInfo(); final DataStoreMetaInfo properties = new DataStoreMetaInfo();
if (properties.isBatchUpdateMode()) { // if (properties.isBatchUpdateMode()) {
task = new BatchUpdateTask(properties); // task = new BatchUpdateTask(properties);
} else { // } else {
task = new StandardUpdateTask(properties); task = new StandardUpdateTask(properties);
} // }
return task; return task;
} }
} }