From 3d08482144e622b4f57646affb9813fed166662b Mon Sep 17 00:00:00 2001 From: thatcher Date: Tue, 27 Dec 2011 18:23:07 -0500 Subject: [PATCH] removed identity assignment --- src/point.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/point.js b/src/point.js index 06958d4b..569288c8 100644 --- a/src/point.js +++ b/src/point.js @@ -1,7 +1,7 @@ (function( $ ){ -$.Point=$.Point = function(x, y) { +$.Point = function(x, y) { this.x = typeof (x) == "number" ? x : 0; this.y = typeof (y) == "number" ? y : 0; };