From db34054ca07df2e5d39276e82b6a2cb46f6155d1 Mon Sep 17 00:00:00 2001 From: Rashid Khan Date: Wed, 11 Dec 2013 09:24:01 -0700 Subject: [PATCH] Fixed jshinting --- src/app/panels/histogram/timeSeries.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/panels/histogram/timeSeries.js b/src/app/panels/histogram/timeSeries.js index 02f5f54e20f..4b0472c1e73 100644 --- a/src/app/panels/histogram/timeSeries.js +++ b/src/app/panels/histogram/timeSeries.js @@ -218,8 +218,7 @@ function (_, Interval) { * Not fill zero's on either side of the current time, only the current time * @return {array} An array of points to plot with flot */ - ts.ZeroFilled.prototype._getNoZeroFlotPairs = function (result, time, i, times) { - var next, expected_next, prev, expected_prev; + ts.ZeroFilled.prototype._getNoZeroFlotPairs = function (result, time) { // add the current time if(this._data[time]){ @@ -228,6 +227,6 @@ function (_, Interval) { return result; }; - + return ts; }); \ No newline at end of file