fix adjusted time offset.

This commit is contained in:
Christopher Jeffrey 2016-04-19 05:53:06 -07:00
parent 8b3db92bbf
commit 42ede54e94
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -22,6 +22,7 @@ var assert = utils.assert;
* @property {Array} samples
* @property {Object} known
* @property {Number} limit
* @property {Number} offset
*/
function AdjustedTime(limit) {
@ -36,6 +37,7 @@ function AdjustedTime(limit) {
this.samples = [];
this.known = {};
this.limit = limit;
this.offset = 0;
this._checked = false;
}