masterkey: remove useless arg for lock.

This commit is contained in:
Christopher Jeffrey 2017-01-11 21:47:09 -08:00
parent 085866d1ac
commit 38a30aceed
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -48,7 +48,7 @@ function MasterKey(options) {
this.timer = null; this.timer = null;
this.until = 0; this.until = 0;
this._onTimeout = this.lock.bind(this); this._onTimeout = this.lock.bind(this);
this.locker = new Lock(this); this.locker = new Lock();
if (options) if (options)
this.fromOptions(options); this.fromOptions(options);