From 24fbbf27472d84e674b29bb826647f04491fbd4e Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 21 Dec 2021 15:19:51 -0800 Subject: [PATCH] lib: remove spurious JSDoc entry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/41240 Reviewed-By: Antoine du Hamel Reviewed-By: James M Snell Reviewed-By: Tobias Nießen Reviewed-By: Ruben Bridgewater --- lib/internal/source_map/source_map.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/internal/source_map/source_map.js b/lib/internal/source_map/source_map.js index c98eb54efe4a6c..163203b2bfc3f0 100644 --- a/lib/internal/source_map/source_map.js +++ b/lib/internal/source_map/source_map.js @@ -154,9 +154,6 @@ class SourceMap { return cloneSourceMapV3(this.#payload); } - /** - * @param {SourceMapV3} mappingPayload - */ #parseMappingPayload = () => { if (this.#payload.sections) { this.#parseSections(this.#payload.sections);