Differences From Artifact [488341d5ad]:
- File src/OFThread.m — part of check-in [2de9660312] at 2017-09-28 23:02:23 on branch trunk — Enable -Wnullable-to-nonnull-conversion and adjust (user: js, size: 9081) [annotate] [blame] [check-ins using]
To Artifact [c1e478224c]:
- File src/OFThread.m — part of check-in [c9efebeff9] at 2017-09-26 22:40:49 on branch trunk — Work around Clang analyzer false positives (user: js, size: 9068) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
383 384 385 386 387 388 389 |
# else
@synchronized (self) {
if (_runLoop == nil)
_runLoop = [[OFRunLoop alloc] init];
}
# endif
| | | 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
# else
@synchronized (self) {
if (_runLoop == nil)
_runLoop = [[OFRunLoop alloc] init];
}
# endif
return _runLoop;
}
- (OFString *)name
{
return [[_name copy] autorelease];
}
|
| ︙ | ︙ |