Remove the unused TextLayerRenderTask._renderingDone property (PR 15259 follow-up)

This is yet another property that I forgot to remove in PR 15259.
This commit is contained in:
Jonas Jenwald 2022-12-05 11:49:14 +01:00
parent fe8fded23b
commit 0274245e90

View File

@ -284,7 +284,6 @@ function render(task) {
// No point in rendering many divs as it would make the browser // No point in rendering many divs as it would make the browser
// unusable even after the divs are rendered. // unusable even after the divs are rendered.
if (textDivsLength > MAX_TEXT_DIVS_TO_RENDER) { if (textDivsLength > MAX_TEXT_DIVS_TO_RENDER) {
task._renderingDone = true;
capability.resolve(); capability.resolve();
return; return;
} }
@ -294,8 +293,6 @@ function render(task) {
task._layoutText(textDiv); task._layoutText(textDiv);
} }
} }
task._renderingDone = true;
capability.resolve(); capability.resolve();
} }
@ -318,7 +315,6 @@ class TextLayerRenderTask {
this._reader = null; this._reader = null;
this._textDivProperties = textDivProperties || new WeakMap(); this._textDivProperties = textDivProperties || new WeakMap();
this._renderingDone = false;
this._canceled = false; this._canceled = false;
this._capability = createPromiseCapability(); this._capability = createPromiseCapability();
this._layoutTextParams = { this._layoutTextParams = {