Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Unified Diff: pkg/analysis_server/lib/src/resource.dart

Issue 363723002: Change HashMap declarations back to Map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analysis_server/lib/src/protocol.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/resource.dart
diff --git a/pkg/analysis_server/lib/src/resource.dart b/pkg/analysis_server/lib/src/resource.dart
index 87b67fb54e2364eef9c19d61ae5b2e789331fa62..58a726f3866607161d8f37eb7285173f8b9e68c6 100644
--- a/pkg/analysis_server/lib/src/resource.dart
+++ b/pkg/analysis_server/lib/src/resource.dart
@@ -306,11 +306,11 @@ class _MemoryFolder extends _MemoryResource implements Folder {
* Use `/` as a path separator.
*/
class MemoryResourceProvider implements ResourceProvider {
- final HashMap<String, _MemoryResource> _pathToResource =
+ final Map<String, _MemoryResource> _pathToResource =
new HashMap<String, _MemoryResource>();
- final HashMap<String, String> _pathToContent = new HashMap<String, String>();
- final HashMap<String, int> _pathToTimestamp = new HashMap<String, int>();
- final HashMap<String, List<StreamController<WatchEvent>>> _pathToWatchers =
+ final Map<String, String> _pathToContent = new HashMap<String, String>();
+ final Map<String, int> _pathToTimestamp = new HashMap<String, int>();
+ final Map<String, List<StreamController<WatchEvent>>> _pathToWatchers =
new HashMap<String, List<StreamController<WatchEvent>>>();
int nextStamp = 0;
« no previous file with comments | « pkg/analysis_server/lib/src/protocol.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698