File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'GoogleUtilities'
3
- s . version = '6.2.2 '
3
+ s . version = '6.2.3 '
4
4
s . summary = 'Google Utilities for iOS (plus community support for macOS and tvOS)'
5
5
6
6
s . description = <<-DESC
Original file line number Diff line number Diff line change
1
+ # 6.2.3
2
+ - Revert "Fix ` GULMutableDictionary ` thread-safety." (#3322 )
3
+
1
4
# 6.2.2
2
5
- Add explicit Foundation import for headers.
3
6
- Fix headers import. (#3277 )
Original file line number Diff line number Diff line change @@ -51,19 +51,19 @@ - (id)objectForKey:(id)key {
51
51
}
52
52
53
53
- (void )setObject : (id )object forKey : (id <NSCopying >)key {
54
- dispatch_sync (_queue, ^{
54
+ dispatch_async (_queue, ^{
55
55
self->_objects [key] = object;
56
56
});
57
57
}
58
58
59
59
- (void )removeObjectForKey : (id )key {
60
- dispatch_sync (_queue, ^{
60
+ dispatch_async (_queue, ^{
61
61
[self ->_objects removeObjectForKey: key];
62
62
});
63
63
}
64
64
65
65
- (void )removeAllObjects {
66
- dispatch_sync (_queue, ^{
66
+ dispatch_async (_queue, ^{
67
67
[self ->_objects removeAllObjects ];
68
68
});
69
69
}
You can’t perform that action at this time.
0 commit comments