未验证 提交 f6f739ec 编写于 作者: V Vitaly Baranov 提交者: GitHub

Merge pull request #22027 from vitlibar/external-loader-small-simplification

Small simplification in ExternalLoader.
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册