Differences From Artifact [7cf102178e]:
- File src/exceptions/OFConditionSignalFailedException.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 [a0b8d7c91b]:
- File src/exceptions/OFConditionSignalFailedException.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:
@"Signaling 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:
@"Signaling a condition of type %@ failed!",
_condition.class];
else
return @"Signaling a condition failed!";
}
@end
|