From 4caabee792954307717942eb0ae201a754802477 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 27 Nov 2018 17:12:50 +0100 Subject: [PATCH] Fix ExecutorGroup.js file location in comments `src/ol/render/ExecutorGroup.js` was removed in #9003 --- src/ol/VectorTile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ol/VectorTile.js b/src/ol/VectorTile.js index d4e0f4ab7c..b6e1c5373e 100644 --- a/src/ol/VectorTile.js +++ b/src/ol/VectorTile.js @@ -65,7 +65,7 @@ class VectorTile extends Tile { /** * @private - * @type {Object} + * @type {Object} */ this.executorGroups_ = {}; @@ -142,7 +142,7 @@ class VectorTile extends Tile { /** * @param {import("./layer/Layer.js").default} layer Layer. * @param {string} key Key. - * @return {import("./render/ExecutorGroup.js").default} Executor group. + * @return {import("./render/canvas/ExecutorGroup.js").default} Executor group. */ getExecutorGroup(layer, key) { return this.executorGroups_[getUid(layer) + ',' + key]; @@ -153,7 +153,7 @@ class VectorTile extends Tile { * @param {import("./layer/Layer").default} layer Layer. * @param {number} zoom Zoom. * @param {import("./extent").Extent} extent Extent. - * @return {import("./render/ExecutorGroup.js").default} Executor groups. + * @return {import("./render/canvas/ExecutorGroup.js").default} Executor groups. */ getLowResExecutorGroup(layer, zoom, extent) { const layerId = getUid(layer); @@ -244,7 +244,7 @@ class VectorTile extends Tile { /** * @param {import("./layer/Layer.js").default} layer Layer. * @param {string} key Key. - * @param {import("./render/ExecutorGroup.js").default} executorGroup Executor group. + * @param {import("./render/canvas/ExecutorGroup.js").default} executorGroup Executor group. */ setExecutorGroup(layer, key, executorGroup) { this.executorGroups_[getUid(layer) + ',' + key] = executorGroup;