diff --git a/lib/index.js b/lib/index.js index f88c6b4..484c3c0 100644 --- a/lib/index.js +++ b/lib/index.js @@ -35,18 +35,6 @@ class Test { let bucket; - // Support Legacy Test Structure, deprecate soon - let legacyBucket = storage.local.getItem(`test-${name}`); - if (legacyBucket) { - console.warn('Migrating tests'); - tests[name] = { - bucket: legacyBucket, - buckets: Object.keys(data) - }; - storage.local.setItem(storageKey, JSON.stringify(tests)); - storage.local.removeItem(`test-${name}`); - } - // Retrieve Bucket from storage if possible if (options.persist && tests[name]) { bucket = tests[name].bucket;