From dd332e966c368a7bfe7cecb9acbdffba223d54ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= <juerg@scratchdisk.com> Date: Fri, 8 Jan 2016 11:42:48 +0100 Subject: [PATCH] Remove unused variable. Apparently the code that required it was accidentally deleted earlier. Turns out it wasn't needed anymore anyway :) --- src/path/PathItem.Boolean.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/path/PathItem.Boolean.js b/src/path/PathItem.Boolean.js index b1c3f27a..2819b96f 100644 --- a/src/path/PathItem.Boolean.js +++ b/src/path/PathItem.Boolean.js @@ -420,8 +420,7 @@ PathItem.inject(new function() { // for the curve-chain starting with this segment. Once we have enough // confidence in the winding contribution, we can propagate it until the // next intersection or end of a curve chain. - var epsilon = /*#=*/Numerical.GEOMETRIC_EPSILON, - chain = [], + var chain = [], start = segment, totalLength = 0, windingSum = 0;