From 3a73af842d84cb9b534f804f8a58323f763e9b30 Mon Sep 17 00:00:00 2001 From: Simon Seyock Date: Thu, 24 Jun 2021 13:58:11 +0200 Subject: [PATCH] Remove comments after jsdoc. --- src/ol/Observable.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ol/Observable.js b/src/ol/Observable.js index dc7d74bfad..a7e19cc66c 100644 --- a/src/ol/Observable.js +++ b/src/ol/Observable.js @@ -77,7 +77,6 @@ class Observable extends EventTarget { * @return {import("./events.js").EventsKey|Array} Event key. * @protected */ - // the jsdoc api annotation follows below the class declaration. onInternal(type, listener) { if (Array.isArray(type)) { const len = type.length; @@ -97,7 +96,6 @@ class Observable extends EventTarget { * @return {import("./events.js").EventsKey|Array} Event key. * @protected */ - // the jsdoc api annotation follows below the class declaration. onceInternal(type, listener) { let key; if (Array.isArray(type)) {