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

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

Issue 969113002: Reformat (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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
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 808c55d54541d868802ebf0f37cee54f6e07b80d..de2d3904f663d20dbc3af4a5b2c722156e19e399 100644
--- a/pkg/analysis_server/lib/src/services/index/store/collection.dart
+++ b/pkg/analysis_server/lib/src/services/index/store/collection.dart
@@ -9,14 +9,12 @@ import 'dart:typed_data' show Uint32List;
import 'package:analyzer/src/generated/utilities_general.dart';
-
/**
* A hash map with `List<int>` keys and [int] values.
*/
class IntArrayToIntMap {
final Map<Uint32List, int> map = new HashMap<Uint32List, int>(
- equals: _intArrayEquals,
- hashCode: _intArrayHashCode);
+ equals: _intArrayEquals, hashCode: _intArrayHashCode);
/**
* Returns the value for the given [key] or null if [key] is not in the map.
@@ -65,7 +63,6 @@ class IntArrayToIntMap {
}
}
-
/**
* A table mapping [int] keys to sets of [int]s.
*/

Powered by Google App Engine
This is Rietveld 408576698