| Index: tracing/tracing/extras/tquery/filter_has_duration.html
|
| diff --git a/tracing/tracing/extras/tquery/filter_has_duration.html b/tracing/tracing/extras/tquery/filter_has_duration.html
|
| index 45a33a3bee77b9cc08f69f7cbc6137605b246335..be465fc2afa91256c298fe10b0e066f2db76cac6 100644
|
| --- a/tracing/tracing/extras/tquery/filter_has_duration.html
|
| +++ b/tracing/tracing/extras/tquery/filter_has_duration.html
|
| @@ -25,8 +25,7 @@ tr.exportTo('tr.e.tquery', function() {
|
| __proto__: tr.e.tquery.Filter.prototype,
|
|
|
| evaluate: function(context) {
|
| - if (context.event.duration === undefined)
|
| - return false;
|
| + if (context.event.duration === undefined) return false;
|
| if (this.minValue !== undefined && this.maxValue !== undefined) {
|
| return context.event.duration >= this.minValue &&
|
| context.event.duration <= this.maxValue;
|
|
|