File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
RollbarCommon/Sources/RollbarCommon/DTOs Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -118,21 +118,21 @@ - (NSNumber *)safelyGetNumberByKey:(NSString *)key {
118
118
119
119
- (void )setDictionary : (nullable NSDictionary *)data forKey : (NSString *)key {
120
120
121
- [self setData: ! data ? data.mutableCopy : data
121
+ [self setData: data ? data.mutableCopy : data
122
122
byKey: key
123
123
];
124
124
}
125
125
126
126
- (void )setArray : (nullable NSArray *)data forKey : (NSString *)key {
127
127
128
- [self setData: ! data ? data.mutableCopy : data
128
+ [self setData: data ? data.mutableCopy : data
129
129
byKey: key
130
130
];
131
131
}
132
132
133
133
- (void )setString : (nullable NSString *)data forKey : (NSString *)key {
134
134
135
- [self setData: ! data ? data.mutableCopy : data
135
+ [self setData: data ? data.mutableCopy : data
136
136
byKey: key
137
137
];
138
138
}
You can’t perform that action at this time.
0 commit comments