Differences From Artifact [cea8613a88]:
- File src/exceptions/OFNotImplementedException.m — part of check-in [0509d7a844] at 2019-01-03 19:13:03 on branch trunk — Update copyright (user: js, size: 1508) [annotate] [blame] [check-ins using]
To Artifact [6f2dd90cb4]:
- File
src/exceptions/OFNotImplementedException.m
— part of check-in
[e629dc83a9]
at
2019-12-27 00:41:54
on branch trunk
— OFSecureData: Add allowsSwappableMemory property
With this property, it's possible to specify whether the memory should
be protected from swapping or not. This makes it easier for e.g. the
crypto hash classes: They can now just always use OFSecureData without
wasting unswappable memory if it's not needed. (user: js, size: 1715) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
56 57 58 59 60 61 62 | [_object release]; [super dealloc]; } - (OFString *)description { | > | | > | > > > > > | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | [_object release]; [super dealloc]; } - (OFString *)description { if (_object != nil) return [OFString stringWithFormat: @"The selector %s is not understood by an object of type " @"%@ or not (fully) implemented!", sel_getName(_selector), [_object class]]; else return [OFString stringWithFormat: @"The selector %s is not understood by an unknown object " @"or not (fully) implemented!", sel_getName(_selector)]; } @end |