Differences From Artifact [65143331f2]:
- File src/exceptions/OFDeleteFileFailedException.m — part of check-in [e40729d406] at 2013-02-12 18:22:15 on branch trunk — Prefix all ivars with an underscore. (user: js, size: 1643) [annotate] [blame] [check-ins using]
To Artifact [443055fc12]:
- File
src/exceptions/OFDeleteFileFailedException.m
— part of check-in
[d9ddc4d06e]
at
2013-02-13 23:10:35
on branch trunk
— Don't cache the description of exceptions.
This was pretty pointless, as it's usually only used once. (user: js, size: 1556) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
64 65 66 67 68 69 70 | [_path release]; [super dealloc]; } - (OFString*)description { | < < | < < < | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | [_path release]; [super dealloc]; } - (OFString*)description { return [OFString stringWithFormat: @"Failed to delete file %@ in class %@! " ERRFMT, _path, _inClass, ERRPARAM]; } - (int)errNo { return _errNo; } |
︙ | ︙ |