| 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.
|
|
|