Differences From Artifact [8482013ced]:
- File src/exceptions/OFUnboundNamespaceException.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: 2263) [annotate] [blame] [check-ins using]
To Artifact [e961348a70]:
- File
src/exceptions/OFUnboundNamespaceException.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: 2279) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
86 87 88 89 90 91 92 | [_prefix release]; [super dealloc]; } - (OFString*)description { | < < < | | | | > > | 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | [_prefix release]; [super dealloc]; } - (OFString*)description { if (_namespace != nil) return [OFString stringWithFormat: @"The namespace %@ is not bound in class %@", _namespace, _inClass]; else if (_prefix != nil) return [OFString stringWithFormat: @"The prefix %@ is not bound to any namespace in class %@", _prefix, _inClass]; else return [OFString stringWithFormat: @"A namespace or prefix is not bound in class %@", _inClass]; } - (OFString*)namespace { OF_GETTER(_namespace, NO) } |
︙ | ︙ |