Differences From Artifact [922d7f84e3]:
- File
src/OFIRIHandler.m
— part of check-in
[ff3a60cc12]
at
2024-04-28 08:36:55
on branch trunk
— Use @synchronized over OFMutex in a few places
These places are not super performance critical and the code becomes a
lot more readable.Actually using @synchronized in ObjFW itself is also a good motivation
to optimize it further. (user: js, size: 6884) [annotate] [blame] [check-ins using] [more...]
To Artifact [010f7934c1]:
- File src/OFIRIHandler.m — part of check-in [b18c1fd0ea] at 2024-06-17 21:13:21 on branch trunk — Remove trailing whitespaces (user: js, size: 6883) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
221 222 223 224 225 226 227 | * Use -[performSelector:withObject:withObject:] to avoid * deprecation warning. This entire thing is purely for * backwards compatibility. */ *data = [self performSelector: selector withObject: name withObject: IRI]; | | | 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | * Use -[performSelector:withObject:withObject:] to avoid * deprecation warning. This entire thing is purely for * backwards compatibility. */ *data = [self performSelector: selector withObject: name withObject: IRI]; if (type != NULL) *type = nil; return; } OF_UNRECOGNIZED_SELECTOR |
︙ | ︙ |