Index: sdk/lib/core/set.dart |
diff --git a/sdk/lib/core/set.dart b/sdk/lib/core/set.dart |
index 7c1f2a748ce1b0790c3f7e99751b60b6fabcf33c..a3eedb832ac6e8a3f2b00d964efed0f77ab51bd9 100644 |
--- a/sdk/lib/core/set.dart |
+++ b/sdk/lib/core/set.dart |
@@ -234,7 +234,7 @@ class _HashSetIterator<E> implements Iterator<E> { |
do { |
if (++_nextValidIndex >= length) break; |
entry = _entries[_nextValidIndex]; |
- } while ((entry === null) || (entry === deletedKey)); |
+ } while ((entry == null) || (entry === deletedKey)); |
Lasse Reichstein Nielsen
2012/11/12 13:10:41
Convert other === too, to identical.
floitsch
2012/11/12 22:18:43
Done.
|
} |
// The entries in the set. May contain null or the sentinel value. |