Index: tracing/tracing/metrics/system_health/utils.html |
diff --git a/tracing/tracing/metrics/system_health/utils.html b/tracing/tracing/metrics/system_health/utils.html |
index 5edbb6386a72fee4bd91456b60619244584b9ca9..661edb9b84e473ffd4d83124b0140dee569eed6e 100644 |
--- a/tracing/tracing/metrics/system_health/utils.html |
+++ b/tracing/tracing/metrics/system_health/utils.html |
@@ -25,12 +25,12 @@ tr.exportTo('tr.metrics.sh', function() { |
function filterExpectationsByRange(irs, opt_range) { |
var filteredExpectations = []; |
irs.forEach(function(ir) { |
- if (!(ir instanceof tr.model.um.UserExpectation)) |
- return; |
+ if (!(ir instanceof tr.model.um.UserExpectation)) return; |
if (!opt_range || |
- opt_range.intersectsExplicitRangeInclusive(ir.start, ir.end)) |
+ opt_range.intersectsExplicitRangeInclusive(ir.start, ir.end)) { |
filteredExpectations.push(ir); |
+ } |
}); |
return filteredExpectations; |
} |