From 3875ea565bf5571b820faf1527116da2587bfbd9 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 7 Feb 2019 10:48:19 -0500 Subject: [PATCH] Remove `mvt` querystring parameter that we never used --- modules/util/util.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/util/util.js b/modules/util/util.js index babfdf6aa..c7c8cb95c 100644 --- a/modules/util/util.js +++ b/modules/util/util.js @@ -138,9 +138,6 @@ export function utilStringQs(str) { if (parts.length === 2) { obj[parts[0]] = (null === parts[1]) ? '' : decodeURIComponent(parts[1]); } - if (parts[0] === 'mvt') { - obj[parts[0]] = (parts[2] !== undefined) ? (decodeURIComponent(parts[1]) + '=' + decodeURIComponent(parts[2])) : (decodeURIComponent(parts[1])); - } return obj; }, {}); }