removed call to BatchUpdateTask

Former-commit-id: 134c6ac5eec282b142febd1341ccdb9936219eb7
This commit is contained in:
Jeremy Long
2013-11-23 21:59:11 -05:00
parent 2cf96bef52
commit 93e6473828

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;
} }
} }