| Index: sky/sdk/lib/painting/text_style.dart
|
| diff --git a/sky/sdk/lib/painting/text_style.dart b/sky/sdk/lib/painting/text_style.dart
|
| index 43e27e982a0c92e94d65fd09ae28929aafe9d47f..c9fda03bff783713d042ac24ff597c6b81a094e7 100644
|
| --- a/sky/sdk/lib/painting/text_style.dart
|
| +++ b/sky/sdk/lib/painting/text_style.dart
|
| @@ -105,6 +105,8 @@ class TextStyle {
|
| }
|
|
|
| bool operator ==(other) {
|
| + if (identical(this, other))
|
| + return true;
|
| return other is TextStyle &&
|
| color == other.color &&
|
| fontFamily == other.fontFamily &&
|
|
|