Differences From Artifact [0c9b919885]:
- File src/exceptions/OFTruncatedDataException.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: 959) [annotate] [blame] [check-ins using]
To Artifact [614023628e]:
- File
src/exceptions/OFTruncatedDataException.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: 872) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 | #import "OFTruncatedDataException.h" #import "OFString.h" @implementation OFTruncatedDataException - (OFString*)description { | < < | < < < | 18 19 20 21 22 23 24 25 26 27 28 29 | #import "OFTruncatedDataException.h" #import "OFString.h" @implementation OFTruncatedDataException - (OFString*)description { return [OFString stringWithFormat: @"Truncated data was received or produced in class %@ while it " @"should not have been truncated!", _inClass]; } @end |