Index: runtime/lib/bool_patch.dart |
diff --git a/runtime/lib/bool_patch.dart b/runtime/lib/bool_patch.dart |
index 274b1539757a09ffc899f3af755b8750c27f20d3..bbcbdb40264636641272b9d4c42ecf0c61cfd6f3 100644 |
--- a/runtime/lib/bool_patch.dart |
+++ b/runtime/lib/bool_patch.dart |
@@ -10,8 +10,6 @@ patch class bool { |
{bool defaultValue: false}) |
native "Bool_fromEnvironment"; |
- int get _identityHashCode { |
- return this ? 1231 : 1237; |
- } |
- int get hashCode => _identityHashCode; |
+ int get hashCode => this ? 1231 : 1237; |
+ int get _identityHashCode => this ? 1231 : 1237; |
} |