Index: pkg/analysis_server/lib/src/services/index/store/codec.dart |
diff --git a/pkg/analysis_server/lib/src/services/index/store/codec.dart b/pkg/analysis_server/lib/src/services/index/store/codec.dart |
index c6cf992389a07884e4e2ce0100bd822bef45981e..97e4dbb490f5ed6811b17ac202f297212a27f515 100644 |
--- a/pkg/analysis_server/lib/src/services/index/store/codec.dart |
+++ b/pkg/analysis_server/lib/src/services/index/store/codec.dart |
@@ -13,7 +13,6 @@ import 'package:analyzer/src/generated/engine.dart'; |
import 'package:analyzer/src/generated/source.dart'; |
import 'package:analyzer/src/generated/utilities_general.dart'; |
- |
/** |
* A helper that encodes/decodes [AnalysisContext]s from/to integers. |
*/ |
@@ -64,7 +63,6 @@ class ContextCodec { |
} |
} |
- |
/** |
* A helper that encodes/decodes [Element]s to/from integers. |
*/ |
@@ -213,8 +211,8 @@ class ElementCodec { |
/** |
* If [usePath] is `true` then [Source] path should be used instead of URI. |
*/ |
- List<int> _getLocationPath(Element element, ElementLocation location, |
- bool usePath) { |
+ List<int> _getLocationPath( |
+ Element element, ElementLocation location, bool usePath) { |
// prepare the location components |
List<String> components = location.components; |
if (usePath) { |
@@ -266,7 +264,6 @@ class ElementCodec { |
} |
} |
- |
/** |
* A helper that encodes/decodes [Relationship]s to/from integers. |
*/ |
@@ -286,7 +283,6 @@ class RelationshipCodec { |
} |
} |
- |
/** |
* A helper that encodes/decodes [String]s from/to integers. |
*/ |