Differences From Artifact [ed77afb6a3]:
- File src/exceptions/OFConnectionFailedException.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: 2055) [annotate] [blame] [check-ins using]
To Artifact [039141bbfb]:
- File
src/exceptions/OFConnectionFailedException.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: 1968) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
74 75 76 77 78 79 80 |
[_host release];
[super dealloc];
}
- (OFString*)description
{
| < < | < < < | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
[_host release];
[super dealloc];
}
- (OFString*)description
{
return [OFString stringWithFormat:
@"A connection to %@ on port %" @PRIu16 @" could not be "
@"established in class %@! " ERRFMT, _host, _port, _inClass,
ERRPARAM];
}
- (OFTCPSocket*)socket
{
OF_GETTER(_socket, NO)
}
|
| ︙ | ︙ |