diff --git a/js/server_status_monitor.js b/js/server_status_monitor.js index 66b909824e..044a96835e 100644 --- a/js/server_status_monitor.js +++ b/js/server_status_monitor.js @@ -1476,7 +1476,6 @@ AJAX.registerOnload('server_status_monitor.js', function() { * TODO: make jqplot's autoscale:true work here */ function getMaxYLabel(dataValues) { - var yValues = []; var maxY = dataValues[0][1]; $.each(dataValues,function(k,v){maxY = (v[1]>maxY) ? v[1] : maxY}); return maxY;