this is broken now, but we're not using it anyway, so remove

This commit is contained in:
Bruno Windels 2021-02-16 20:00:08 +01:00
parent 0ccf735148
commit 630ac40f05

View file

@ -166,20 +166,6 @@ class IDBLogExport {
this._platform = platform;
}
get minTimestamp() {
if (!this._items.length) {
return 0;
}
return this._items[0].start;
}
get maxTimestamp() {
if (!this._items.length) {
return 0;
}
return this._items[this._items.length - 1].end;
}
get count() {
return this._items.length;
}