| Index: tracing/tracing/importer/empty_importer.html
|
| diff --git a/tracing/tracing/importer/empty_importer.html b/tracing/tracing/importer/empty_importer.html
|
| index dc5f867b3ffdea79b9c47fb913ff19c2eca098d4..028a7d427ec64f556f17c93caa3920cc3caa975f 100644
|
| --- a/tracing/tracing/importer/empty_importer.html
|
| +++ b/tracing/tracing/importer/empty_importer.html
|
| @@ -20,13 +20,13 @@ tr.exportTo('tr.importer', function() {
|
| */
|
| function EmptyImporter(events) {
|
| this.importPriority = 0;
|
| - };
|
| + }
|
|
|
| EmptyImporter.canImport = function(eventData) {
|
| - if (eventData instanceof Array && eventData.length == 0)
|
| + if (eventData instanceof Array && eventData.length === 0)
|
| return true;
|
| if (typeof(eventData) === 'string' || eventData instanceof String) {
|
| - return eventData.length == 0;
|
| + return eventData.length === 0;
|
| }
|
| return false;
|
| };
|
|
|