Skip to content

Commit

Permalink
Use threadsafe dict for meta as well
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed Jun 7, 2024
1 parent a19deec commit af772d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quicksilver/Code-QuickStepCore/QSObject.m
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ - (id)init {
if (self = [super init]) {

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

0 comments on commit af772d5

Please sign in to comment.