From f3574955743e139bc687f0abb9a0d76a3c80f366 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Thu, 23 Sep 2021 13:14:22 +0000 Subject: [PATCH] All layers now call dispose on the renderer --- src/ol/layer/WebGLPoints.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/ol/layer/WebGLPoints.js b/src/ol/layer/WebGLPoints.js index 0597ebf1d0..de9a7360e1 100644 --- a/src/ol/layer/WebGLPoints.js +++ b/src/ol/layer/WebGLPoints.js @@ -113,14 +113,6 @@ class WebGLPointsLayer extends Layer { attributes: this.parseResult_.attributes, }); } - - /** - * Clean up. - */ - disposeInternal() { - this.getRenderer().disposeInternal(); - super.disposeInternal(); - } } export default WebGLPointsLayer;