Small simplification in ExternalLoader.

This commit is contained in:
Vitaly Baranov 2021-03-23 15:15:44 +03:00
parent 090e558da4
commit 46f4c60839

View File

@ -818,13 +818,10 @@ private:
if (!min_id)
min_id = getMinIDToFinishLoading(forced_to_reload);
if (info->state_id >= min_id)
return true; /// stop
if (info->loading_id < min_id)
startLoading(*info, forced_to_reload, *min_id);
/// Wait for the next event if loading wasn't completed, and stop otherwise.
/// Wait for the next event if loading wasn't completed, or stop otherwise.
return (info->state_id >= min_id);
};
@ -850,9 +847,6 @@ private:
if (filter && !filter(name))
continue;
if (info.state_id >= min_id)
continue;
if (info.loading_id < min_id)
startLoading(info, forced_to_reload, *min_id);