Differences From Artifact [2b12797bb2]:
- File
src/exceptions/OFUnknownXMLEntityException.h
— part of check-in
[2f4e0df8be]
at
2017-10-17 00:33:37
on branch trunk
— Do not use implicit method return types
Instead, explicitly declare them, as OF_ASSUME_NONNULL_{BEGIN,END} does
not apply to implicit return types. This means that after this commit,
all init methods have a nonnull return type, as they should have. (user: js, size: 1636) [annotate] [blame] [check-ins using]
To Artifact [a0ac7d142d]:
- File src/exceptions/OFUnknownXMLEntityException.h — part of check-in [cc3ad3ddd3] at 2017-11-18 18:50:50 on branch trunk — Documentation: Use @brief for all properties (user: js, size: 1643) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
27 28 29 30 31 32 33 | */ @interface OFUnknownXMLEntityException: OFException { OFString *_entityName; } /*! | | | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | */ @interface OFUnknownXMLEntityException: OFException { OFString *_entityName; } /*! * @brief The name of the unknown XML entity. */ @property (readonly, nonatomic) OFString *entityName; /*! * @brief Creates a new, autoreleased unknown XML entity exception. * * @param entityName The name of the unknown XML entity |
︙ | ︙ |