removed identity assignment

This commit is contained in:
thatcher 2011-12-27 20:58:16 -05:00
parent 3d08482144
commit 27189ae583

View File

@ -2219,7 +2219,7 @@ $.Strings = {
(function( $ ){
$.Point=$.Point = function(x, y) {
$.Point = function(x, y) {
this.x = typeof (x) == "number" ? x : 0;
this.y = typeof (y) == "number" ? y : 0;
};