Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / src / adapter / core / ext-base-point.js
diff --git a/src/adapter/core/ext-base-point.js b/src/adapter/core/ext-base-point.js
deleted file mode 100644 (file)
index 8ea7bfd..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/*!
- * Ext JS Library 3.1.1
- * Copyright(c) 2006-2010 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
- */
-       Ext.lib.Point = function(x, y) {\r
-        if (Ext.isArray(x)) {\r
-            y = x[1];\r
-            x = x[0];\r
-        }\r
-        var me = this;\r
-        me.x = me.right = me.left = me[0] = x;\r
-        me.y = me.top = me.bottom = me[1] = y;\r
-    };\r
-\r
-    Ext.lib.Point.prototype = new Ext.lib.Region();\r