| Index: pkg/analyzer/test/generated/resolver_test.dart
|
| diff --git a/pkg/analyzer/test/generated/resolver_test.dart b/pkg/analyzer/test/generated/resolver_test.dart
|
| index 07776ff81ef684bd2a98f57d7dd9fb6786268c96..539bf0d8001a85c7ec2a5e6495b057f139338ffa 100644
|
| --- a/pkg/analyzer/test/generated/resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/resolver_test.dart
|
| @@ -11498,7 +11498,7 @@ class TypeOverrideManagerTest extends EngineTestCase {
|
| try {
|
| manager.exitScope();
|
| fail("Expected IllegalStateException");
|
| - } on IllegalStateException catch (exception) {
|
| + } on IllegalStateException {
|
| // Expected
|
| }
|
| }
|
| @@ -11510,7 +11510,7 @@ class TypeOverrideManagerTest extends EngineTestCase {
|
| try {
|
| manager.exitScope();
|
| fail("Expected IllegalStateException");
|
| - } on IllegalStateException catch (exception) {
|
| + } on IllegalStateException {
|
| // Expected
|
| }
|
| }
|
| @@ -11524,7 +11524,7 @@ class TypeOverrideManagerTest extends EngineTestCase {
|
| try {
|
| manager.exitScope();
|
| fail("Expected IllegalStateException");
|
| - } on IllegalStateException catch (exception) {
|
| + } on IllegalStateException {
|
| // Expected
|
| }
|
| }
|
|
|