From ace1d0f441ed2424869c513934ac569f1fed8c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sat, 1 Dec 2012 11:10:59 -0800 Subject: [PATCH] No need to set _clockwise since #reverse() already does so. --- src/path/Path.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/path/Path.js b/src/path/Path.js index 77e7e24c..dd9507e1 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -834,7 +834,6 @@ var Path = this.Path = PathItem.extend(/** @lends Path# */{ // Only revers the path if its clockwise orientation is not the same // as what it is now demanded to be. this.reverse(); - this._clockwise = clockwise; } },