Remove unused variable.

Apparently the code that required it was accidentally deleted earlier. Turns out it wasn't needed anymore anyway :)
This commit is contained in:
Jürg Lehni 2016-01-08 11:42:48 +01:00
parent cb3d4341fd
commit dd332e966c

View file

@ -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;