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

Unified Diff: pkg/analysis_server/lib/src/services/index/store/collection.dart

Issue 725143004: Format and sort analyzer and analysis_server packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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
Index: pkg/analysis_server/lib/src/services/index/store/collection.dart
diff --git a/pkg/analysis_server/lib/src/services/index/store/collection.dart b/pkg/analysis_server/lib/src/services/index/store/collection.dart
index 9002aa9ca104388fa4254f9a0923f98cc717dda8..c2ad95334f8d4df067c519144ecf1d5697123a32 100644
--- a/pkg/analysis_server/lib/src/services/index/store/collection.dart
+++ b/pkg/analysis_server/lib/src/services/index/store/collection.dart
@@ -12,8 +12,9 @@ import 'dart:typed_data';
* A hash map with `List<int>` keys and [int] values.
*/
class IntArrayToIntMap {
- final Map<Int32List, int> map = new HashMap<Int32List, int>(equals:
- _intArrayEquals, hashCode: _intArrayHashCode);
+ final Map<Int32List, int> map = new HashMap<Int32List, int>(
+ equals: _intArrayEquals,
+ hashCode: _intArrayHashCode);
/**
* Returns the value for the given [key] or null if [key] is not in the map.

Powered by Google App Engine
This is Rietveld 408576698