| Index: lib/runtime/dart/html_common.js
|
| diff --git a/lib/runtime/dart/html_common.js b/lib/runtime/dart/html_common.js
|
| index 1cade6f39186248f0b53702e3f5bc96d6dad135c..9ffd6d4227ff1c3ecc0bae3285e62338bd038b85 100644
|
| --- a/lib/runtime/dart/html_common.js
|
| +++ b/lib/runtime/dart/html_common.js
|
| @@ -281,7 +281,7 @@ dart_library.library('dart/html_common', null, /* Imports */[
|
| findSlot(value) {
|
| let length = this.values[dartx.length];
|
| for (let i = 0; i < dart.notNull(length); i++) {
|
| - if (dart.notNull(core.identical(this.values[dartx.get](i), value))) return i;
|
| + if (core.identical(this.values[dartx.get](i), value)) return i;
|
| }
|
| this.values[dartx.add](value);
|
| this.copies[dartx.add](null);
|
|
|