summaryrefslogtreecommitdiffstats
path: root/webapp/stores/browser_store.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/stores/browser_store.jsx')
-rw-r--r--webapp/stores/browser_store.jsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/webapp/stores/browser_store.jsx b/webapp/stores/browser_store.jsx
index d605aac80..2dae78f46 100644
--- a/webapp/stores/browser_store.jsx
+++ b/webapp/stores/browser_store.jsx
@@ -35,18 +35,6 @@ class BrowserStoreClass {
this.isSignallingLogin = this.isSignallingLogin.bind(this);
}
- checkVersion() {
- var currentVersion = this.getGlobalItem('storage_version');
- if (currentVersion !== global.window.mm_config.Version) {
- this.clearAll();
- try {
- this.setGlobalItem('storage_version', global.window.mm_config.Version);
- } catch (e) {
- // Do nothing
- }
- }
- }
-
setItem(name, value) {
this.setGlobalItem(getPrefix() + name, value);
}