Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / state / SessionProvider.js
diff --git a/examples/state/SessionProvider.js b/examples/state/SessionProvider.js
deleted file mode 100644 (file)
index 916fa28..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/*!
- * Ext JS Library 3.3.0
- * Copyright(c) 2006-2010 Ext JS, Inc.
- * licensing@extjs.com
- * http://www.extjs.com/license
- */
-Ext.state.SessionProvider = Ext.extend(Ext.state.CookieProvider, {
-    readCookies : function(){
-        if(this.state){
-            for(var k in this.state){
-                if(typeof this.state[k] == 'string'){
-                    this.state[k] = this.decodeValue(this.state[k]);
-                }
-            }
-        }
-        return Ext.apply(this.state || {}, Ext.state.SessionProvider.superclass.readCookies.call(this));
-    }
-});
\ No newline at end of file