Index: pkg/analysis_server/lib/src/operation/operation.dart |
diff --git a/pkg/analysis_server/lib/src/operation/operation.dart b/pkg/analysis_server/lib/src/operation/operation.dart |
index e9ed101115ef5be2dd7f08e6513fa923a4fe5497..1433c904818c9b5bc9c4df1e32f0f573ae624b82 100644 |
--- a/pkg/analysis_server/lib/src/operation/operation.dart |
+++ b/pkg/analysis_server/lib/src/operation/operation.dart |
@@ -7,7 +7,6 @@ library operation; |
import 'package:analysis_server/src/analysis_server.dart'; |
import 'package:analyzer/src/generated/source.dart'; |
- |
/** |
* The class [ServerOperation] defines the behavior of objects used to perform |
* operations on a [AnalysisServer]. |
@@ -24,7 +23,6 @@ abstract class ServerOperation { |
void perform(AnalysisServer server); |
} |
- |
/** |
* The enumeration [ServerOperationPriority] defines the priority levels used |
* to organize [ServerOperation]s in an optimal order. A smaller ordinal value |
@@ -60,7 +58,6 @@ class ServerOperationPriority { |
String toString() => name; |
} |
- |
/** |
* [SourceSensitiveOperation] can decide if the operation should be discarded |
* before a change is applied to a [Source]. |