removed identity assignment

This commit is contained in:
thatcher 2011-12-27 18:23:07 -05:00
parent d145c129a0
commit 3d08482144

View File

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