From a446b3c600fc30e4d166c990f9c45f98d146e01a Mon Sep 17 00:00:00 2001 From: Knut Sveidqvist Date: Sat, 12 Sep 2020 13:35:11 +0200 Subject: [PATCH] #1676 Lint fix --- src/diagrams/flowchart/flowRenderer-v2.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/diagrams/flowchart/flowRenderer-v2.js b/src/diagrams/flowchart/flowRenderer-v2.js index a3b9472ab..49330588f 100644 --- a/src/diagrams/flowchart/flowRenderer-v2.js +++ b/src/diagrams/flowchart/flowRenderer-v2.js @@ -29,7 +29,6 @@ export const addVertices = function(vert, g, svgId) { const keys = Object.keys(vert); // Iterate through each item in the vertex object (containing all the vertices found) in the graph definition - let cnt = 0; keys.forEach(function(id) { const vertex = vert[id]; @@ -166,7 +165,6 @@ export const addVertices = function(vert, g, svgId) { type: vertex.type, padding: getConfig().flowchart.padding }); - cnt++; }); };