commit | e36e62e9a642883da06b7b38547a7272f497090a | [log] [tgz] |
---|---|---|
author | Dan Field <dnfield@google.com> | Wed Jun 30 09:46:54 2021 -0700 |
committer | GitHub <noreply@github.com> | Wed Jun 30 09:46:54 2021 -0700 |
tree | d618b84439c3a95b61199fd8b3e8676dc1f871cb | |
parent | ae2442c8c60aea7b92677c7066bca05d5decd774 [diff] [blame] |
Revert "Revert "Audit hashCode overrides outside of packages/flutter (#85370)" (#85451)" (#85567) This reverts commit 2be0d57fa25423ffcba5a07d22ef9386a89dcf4c.
diff --git a/dev/bots/analyze.dart b/dev/bots/analyze.dart index 35865ea..dc98d75 100644 --- a/dev/bots/analyze.dart +++ b/dev/bots/analyze.dart
@@ -610,7 +610,7 @@ } @override - int get hashCode => a ^ b ^ c ^ d; + int get hashCode => Object.hash(a, b, c, d); } // DO NOT ADD ANY ENTRIES TO THIS LIST.