From ee264724969d5f33010cc7ede7981bcf4a7cd7f1 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 28 Feb 2017 15:03:33 -0500 Subject: [PATCH] Remove unused variable - eslint warning --- modules/svg/vertices.js | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/svg/vertices.js b/modules/svg/vertices.js index 91c7c1d34..d50cf8f06 100644 --- a/modules/svg/vertices.js +++ b/modules/svg/vertices.js @@ -133,7 +133,6 @@ export function svgVertices(projection, context) { .attr('transform', 'translate(-5, -6)') .attr('xlink:href', function(d) { var picon = icon(d), - isPoi = picon.match(/^poi-/) !== null, isMaki = dataFeatureIcons.indexOf(picon) !== -1; return '#' + picon + (isMaki ? '-11' : ''); })