Differences From Artifact [23d60f6018]:
- File src/exceptions/OFUnsupportedVersionException.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: 1631) [annotate] [blame] [check-ins using]
To Artifact [a07066326a]:
- File
src/exceptions/OFUnsupportedVersionException.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: 1544) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
63 64 65 66 67 68 69 |
[_version release];
[super dealloc];
}
- (OFString*)description
{
| < < | < < < | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
[_version release];
[super dealloc];
}
- (OFString*)description
{
return [OFString stringWithFormat:
@"Version %@ of the format or protocol is not supported by class "
@"%@", _version, _inClass];
}
- (OFString*)version
{
OF_GETTER(_version, NO)
}
@end
|