Skip to content

Commit

Permalink
Use threadsafe dicts for data and meta
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed Oct 1, 2024
1 parent 878ac4b commit 363a4de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Quicksilver/Code-QuickStepCore/QSObject.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ + (void)interfaceChanged {
- (id)init {
if (self = [super init]) {

data = [NSMutableDictionary dictionaryWithCapacity:0];
meta = [NSMutableDictionary dictionaryWithCapacity:0];
data = [QSThreadSafeMutableDictionary dictionaryWithCapacity:0];
meta = [QSThreadSafeMutableDictionary dictionaryWithCapacity:0];
cache = [QSThreadSafeMutableDictionary dictionaryWithCapacity:0];
name = nil;
label = nil;
Expand Down

0 comments on commit 363a4de

Please sign in to comment.