| Index: runtime/lib/object_patch.dart
|
| diff --git a/runtime/lib/object_patch.dart b/runtime/lib/object_patch.dart
|
| index e2b493353c28ac0a168e21d585f78b28f63d37ce..2d42da7df44ebf90db1c20f3e6b0045f3bf5533a 100644
|
| --- a/runtime/lib/object_patch.dart
|
| +++ b/runtime/lib/object_patch.dart
|
| @@ -13,9 +13,6 @@ patch class Object {
|
| static _setHash(obj, hash) native "Object_setHash";
|
|
|
| /* patch */ int get hashCode {
|
| - if (this == null) {
|
| - return 2011; // The year Dart was announced and a prime.
|
| - }
|
| var result = _getHash(this);
|
| if (result == 0) {
|
| // We want the hash to be a Smi value greater than 0.
|
|
|