Differences From Artifact [c9a1338f9d]:
- File src/exceptions/OFThreadStartFailedException.m — part of check-in [0509d7a844] at 2019-01-03 19:13:03 on branch trunk — Update copyright (user: js, size: 1360) [annotate] [blame] [check-ins using]
To Artifact [0346f15b9f]:
- File src/exceptions/OFThreadStartFailedException.m — part of check-in [bceb7ed4c9] at 2019-03-08 00:35:48 on branch trunk — Use dot syntax (user: js, size: 1358) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
50 51 52 53 54 55 56 | [super dealloc]; } - (OFString *)description { if (_thread != nil) return [OFString stringWithFormat: | | | 50 51 52 53 54 55 56 57 58 59 60 61 | [super dealloc]; } - (OFString *)description { if (_thread != nil) return [OFString stringWithFormat: @"Starting a thread of type %@ failed!", _thread.class]; else return @"Starting a thread failed!"; } @end |