Index: sdk/lib/html/html_common/conversions_dartium.dart |
diff --git a/sdk/lib/html/html_common/conversions_dartium.dart b/sdk/lib/html/html_common/conversions_dartium.dart |
index 371997d6f1c89bddfadaf3f241539e828287626c..90fe55dd5f3c94c57a3589ba9a6cc7a9644ee385 100644 |
--- a/sdk/lib/html/html_common/conversions_dartium.dart |
+++ b/sdk/lib/html/html_common/conversions_dartium.dart |
@@ -115,7 +115,7 @@ class _ReturnedDictionary { |
Map get toMap => _values; |
- _ReturnedDictionary(Map value): _values = value ? value != null : {}; |
+ _ReturnedDictionary(Map value): _values = value != null ? value : {}; |
} |
// Helper function to wrapped a returned dictionary from blink to a Dart looking |