From d916f1d8436dd7d6a034c15cab14ee46b2f6024f Mon Sep 17 00:00:00 2001 From: walterhiggins Date: Thu, 7 Feb 2013 22:22:13 +0000 Subject: [PATCH] no need to pass world param to arch --- src/main/javascript/drone/test.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/javascript/drone/test.js b/src/main/javascript/drone/test.js index 7ce1a2b..41ae1e9 100644 --- a/src/main/javascript/drone/test.js +++ b/src/main/javascript/drone/test.js @@ -7,8 +7,7 @@ Drone.prototype.testHorizontalStrokeWidth = function(){ radius: 8, orientation: 'horizontal', strokeWidth: 3, - quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true}, - world: this._getWorld() + quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true} }); }; @@ -19,7 +18,6 @@ Drone.prototype.testVerticalStrokeWidth = function(){ radius: 8, orientation: 'vertical', strokeWidth: 3, - quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true}, - world: this._getWorld() + quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true} }); };