remove unused storage property

This commit is contained in:
Bruno Windels 2022-02-18 16:47:47 +01:00
parent e3e90ed167
commit 347edb5988
2 changed files with 0 additions and 2 deletions

View file

@ -127,7 +127,6 @@ export class Session {
this._e2eeAccount, this._e2eeAccount,
PICKLE_KEY, PICKLE_KEY,
this._olm, this._olm,
this._storage,
this._platform.clock.now, this._platform.clock.now,
this._user.id, this._user.id,
senderKeyLock senderKeyLock

View file

@ -58,7 +58,6 @@ export class Decryption {
private readonly pickleKey: string, private readonly pickleKey: string,
private readonly now: () => number, private readonly now: () => number,
private readonly ownUserId: string, private readonly ownUserId: string,
private readonly storage: Storage,
private readonly olm: Olm, private readonly olm: Olm,
private readonly senderKeyLock: LockMap<string> private readonly senderKeyLock: LockMap<string>
) {} ) {}