File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Changed
11
+
12
+ - removal of _ late_ modifier from the attributes of the JsonCacheMem class.
13
+
10
14
## [ 0.3.1] - 2021-08-25
11
15
12
16
### Added
Original file line number Diff line number Diff line change @@ -92,10 +92,10 @@ class JsonCacheMem implements JsonCache {
92
92
final ReadWriteMutex _mutex;
93
93
94
94
/// in-memory shared storage.
95
- static late final Map <String , Map <String , dynamic >?> _shrMem = {};
95
+ static final Map <String , Map <String , dynamic >?> _shrMem = {};
96
96
97
97
/// shared mutex.
98
- static late final _shrMutex = ReadWriteMutex ();
98
+ static final _shrMutex = ReadWriteMutex ();
99
99
100
100
/// Frees up storage space in both the level2 cache and in-memory cache.
101
101
@override
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ packages:
7
7
name: async
8
8
url: "https://pub.dartlang.org"
9
9
source: hosted
10
- version: "2.6 .1"
10
+ version: "2.8 .1"
11
11
boolean_selector:
12
12
dependency: transitive
13
13
description:
@@ -28,7 +28,7 @@ packages:
28
28
name: charcode
29
29
url: "https://pub.dartlang.org"
30
30
source: hosted
31
- version: "1.2.0 "
31
+ version: "1.3.1 "
32
32
clock:
33
33
dependency: transitive
34
34
description:
@@ -120,7 +120,7 @@ packages:
120
120
name: meta
121
121
url: "https://pub.dartlang.org"
122
122
source: hosted
123
- version: "1.3 .0"
123
+ version: "1.7 .0"
124
124
mutex:
125
125
dependency: "direct main"
126
126
description:
@@ -279,7 +279,7 @@ packages:
279
279
name: test_api
280
280
url: "https://pub.dartlang.org"
281
281
source: hosted
282
- version: "0.3.0 "
282
+ version: "0.4.2 "
283
283
typed_data:
284
284
dependency: transitive
285
285
description:
You can’t perform that action at this time.
0 commit comments