dont need this anymore

This commit is contained in:
Bruno Windels 2020-10-01 14:45:09 +02:00
parent b08b7e521a
commit cb7da2ba4a

View file

@ -45,7 +45,7 @@ export class Transaction {
// more specific error? this is a bug, so maybe not ...
throw new StorageError(`Invalid store for transaction: ${name}, only ${this._allowedStoreNames.join(", ")} are allowed.`);
}
return new Store(this._txn.objectStore(name), this);
return new Store(this._txn.objectStore(name));
}
_store(name, mapStore) {