Differences From Artifact [8d27f950a1]:
- File src/OFString.m — part of check-in [9f3a4dfbc0] at 2017-11-04 21:09:10 on branch trunk — OFString: Improve freeWhenDone in case of error (user: js, size: 67009) [annotate] [blame] [check-ins using]
To Artifact [42646dafbd]:
- File src/OFString.m — part of check-in [0a4565fb0f] at 2017-11-05 18:25:38 on branch trunk — Use -[isMemberOfClass:] instead of object_getClass (user: js, size: 67008) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
826 827 828 829 830 831 832 | } return ret; } - (instancetype)init { | | | 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 | } return ret; } - (instancetype)init { if ([self isMemberOfClass: [OFString class]]) { @try { [self doesNotRecognizeSelector: _cmd]; } @catch (id e) { [self release]; @throw e; } |
︙ | ︙ |