From a05d330106b455ebe8facbfa78759ffda49694b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sun, 29 May 2011 19:42:01 +0100 Subject: [PATCH] Remove unused project references. --- test/tests/Item_Cloning.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/tests/Item_Cloning.js b/test/tests/Item_Cloning.js index ecd43730..f4fe028f 100644 --- a/test/tests/Item_Cloning.js +++ b/test/tests/Item_Cloning.js @@ -17,7 +17,6 @@ function cloneAndCompare(item) { } test('Path#clone()', function() { - var proj = paper.project; var path = new Path([10, 20], [30, 40]); path.closed = true; path.name = 'test'; @@ -45,7 +44,6 @@ test('Path#clone() with GradientColor', function() { var gradient = new Gradient(colors, 'radial'); var color = new GradientColor(gradient, [0, 0], [20, 20], [10, 10]); - var proj = paper.project; var path = new Path([10, 20], [30, 40]); path.fillColor = color; cloneAndCompare(path);