Differences From Artifact [ed9a79856e]:
- File src/OFDate.m — part of check-in [526feacebc] at 2017-11-11 23:27:09 on branch trunk — Small optimization for -[isEqual:] (user: js, size: 14124) [annotate] [blame] [check-ins using]
To Artifact [da50e80816]:
- File
src/OFDate.m
— part of check-in
[11f24addd7]
at
2017-11-19 12:05:42
on branch trunk
— Fix warnings introduced by OFComparing change
Since OFComparing no longer conforms to OFObject, OFObject needed to be
added at a few places. (user: js, size: 14134) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
393 394 395 396 397 398 399 | } - (id)copy { return [self retain]; } | | | 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | } - (id)copy { return [self retain]; } - (of_comparison_result_t)compare: (id <OFObject, OFComparing>)object { OFDate *otherDate; if (![object isKindOfClass: [OFDate class]]) @throw [OFInvalidArgumentException exception]; otherDate = (OFDate *)object; |
︙ | ︙ |