| Index: third_party/pkg/angular/lib/core/cache.dart
|
| diff --git a/third_party/pkg/angular/lib/core/cache.dart b/third_party/pkg/angular/lib/core/cache.dart
|
| index 588a57567fee2bab5e6af7e3b3367eb21f9ac416..23e5d13e8d55b9c707d52382d20151452c4dfdd4 100644
|
| --- a/third_party/pkg/angular/lib/core/cache.dart
|
| +++ b/third_party/pkg/angular/lib/core/cache.dart
|
| @@ -1,4 +1,4 @@
|
| -part of angular.core;
|
| +part of angular.core_internal;
|
|
|
| class CacheStats {
|
| final int capacity;
|
| @@ -76,7 +76,7 @@ class UnboundedCache<K, V> implements Cache<K, V> {
|
| * - should stringify keys?
|
| */
|
| class LruCache<K, V> extends Cache<K, V> {
|
| - Map<K, V> _entries = new LinkedHashMap<K, V>();
|
| + final _entries = new LinkedHashMap<K, V>();
|
| int _capacity;
|
| int _hits = 0;
|
| int _misses = 0;
|
|
|