Differences From Artifact [ed882483df]:
- File src/exceptions/OFConditionWaitFailedException.m — part of check-in [0509d7a844] at 2019-01-03 19:13:03 on branch trunk — Update copyright (user: js, size: 1433) [annotate] [blame] [check-ins using]
To Artifact [872efbe506]:
- File src/exceptions/OFConditionWaitFailedException.m — part of check-in [bceb7ed4c9] at 2019-03-08 00:35:48 on branch trunk — Use dot syntax (user: js, size: 1431) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
51 52 53 54 55 56 57 | } - (OFString *)description { if (_condition != nil) return [OFString stringWithFormat: @"Waiting for a condition of type %@ failed!", | | | 51 52 53 54 55 56 57 58 59 60 61 62 | } - (OFString *)description { if (_condition != nil) return [OFString stringWithFormat: @"Waiting for a condition of type %@ failed!", _condition.class]; else return @"Waiting for a condition failed!"; } @end |