| Index: tracing/tracing/extras/tquery/filter_any_of.html
|
| diff --git a/tracing/tracing/extras/tquery/filter_any_of.html b/tracing/tracing/extras/tquery/filter_any_of.html
|
| index 6a7d4696b7eb7943ecfc7477dcdb849bc78f846e..b72779af064e8516351e95a05eed75a06236eadb 100644
|
| --- a/tracing/tracing/extras/tquery/filter_any_of.html
|
| +++ b/tracing/tracing/extras/tquery/filter_any_of.html
|
| @@ -34,11 +34,9 @@ tr.exportTo('tr.e.tquery', function() {
|
| },
|
|
|
| evaluate: function(context) {
|
| - if (!this.subExpressions.length)
|
| - return true;
|
| + if (!this.subExpressions.length) return true;
|
| for (var i = 0; i < this.subExpressions.length; i++) {
|
| - if (this.subExpressions[i].evaluate(context))
|
| - return true;
|
| + if (this.subExpressions[i].evaluate(context)) return true;
|
| }
|
| return false;
|
| }
|
|
|