| Index: tool/input_sdk/private/interceptors.dart
|
| diff --git a/tool/input_sdk/private/interceptors.dart b/tool/input_sdk/private/interceptors.dart
|
| index accb591c305f21ad15e399ce1fe5c608148d2cee..566d1f6c106b8b4761ee0d11bab929711adc8413 100644
|
| --- a/tool/input_sdk/private/interceptors.dart
|
| +++ b/tool/input_sdk/private/interceptors.dart
|
| @@ -283,7 +283,7 @@ findInterceptorForType(Type type) {
|
| abstract class Interceptor {
|
| const Interceptor();
|
|
|
| - bool operator ==(other) => identical(this, other);
|
| + bool operator ==(Object other) => identical(this, other);
|
|
|
| int get hashCode => Primitives.objectHashCode(this);
|
|
|
|
|