| Index: pkg/analysis_server/lib/src/context_directory_manager.dart
|
| diff --git a/pkg/analysis_server/lib/src/context_directory_manager.dart b/pkg/analysis_server/lib/src/context_directory_manager.dart
|
| index f1e689762fe0e1d1f6c6c1bad76964c60c0ebc52..6c93f2ce7d6da38c8d5d7dce1cdc4a382bd7b29b 100644
|
| --- a/pkg/analysis_server/lib/src/context_directory_manager.dart
|
| +++ b/pkg/analysis_server/lib/src/context_directory_manager.dart
|
| @@ -27,7 +27,7 @@ class _ContextDirectoryInfo {
|
| * Map from full path to the [Source] object, for each source that has been
|
| * added to the context.
|
| */
|
| - HashMap<String, Source> sources = new HashMap<String, Source>();
|
| + Map<String, Source> sources = new HashMap<String, Source>();
|
|
|
| /**
|
| * Dependencies of the context's package map. If any of these files changes,
|
| @@ -50,7 +50,7 @@ abstract class ContextDirectoryManager {
|
| * [_ContextDirectoryInfo] object for each included directory in the most
|
| * recent successful call to [setRoots].
|
| */
|
| - HashMap<Folder, _ContextDirectoryInfo> _currentDirectoryInfo =
|
| + Map<Folder, _ContextDirectoryInfo> _currentDirectoryInfo =
|
| new HashMap<Folder, _ContextDirectoryInfo>();
|
|
|
| /**
|
| @@ -243,7 +243,7 @@ abstract class ContextDirectoryManager {
|
| /**
|
| * Called when a new context needs to be created.
|
| */
|
| - void addContext(Folder folder, HashMap<String, List<Folder>> packageMap);
|
| + void addContext(Folder folder, Map<String, List<Folder>> packageMap);
|
|
|
| /**
|
| * Called when the set of files associated with a context have changed (or
|
|
|