| Index: pkg/analysis_server/test/analysis_abstract.dart
|
| diff --git a/pkg/analysis_server/test/analysis_abstract.dart b/pkg/analysis_server/test/analysis_abstract.dart
|
| index e14d3d1cd6dd9b6c6fe4ece31384217d6c562274..0cf7558ef6e246335771f780bbb3a4d4146d1d03 100644
|
| --- a/pkg/analysis_server/test/analysis_abstract.dart
|
| +++ b/pkg/analysis_server/test/analysis_abstract.dart
|
| @@ -261,21 +261,3 @@ class AbstractAnalysisTest {
|
| return code as String;
|
| }
|
| }
|
| -
|
| -
|
| -class AnalysisError {
|
| - final String file;
|
| - final String errorCode;
|
| - final int offset;
|
| - final int length;
|
| - final String message;
|
| - final String correction;
|
| - AnalysisError(this.file, this.errorCode, this.offset, this.length,
|
| - this.message, this.correction);
|
| -
|
| - @override
|
| - String toString() {
|
| - return 'NotificationError(file=$file; errorCode=$errorCode; '
|
| - 'offset=$offset; length=$length; message=$message)';
|
| - }
|
| -}
|
|
|