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