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