Differences From Artifact [04bd4c8eb2]:
- File src/exceptions/OFBindFailedException.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: 2016) [annotate] [blame] [check-ins using]
To Artifact [21f3f29bde]:
- File
src/exceptions/OFBindFailedException.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: 1929) [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 |
[_host release];
[super dealloc];
}
- (OFString*)description
{
return [OFString stringWithFormat:
@"Binding to port %" @PRIu16 @" on host %@ failed in class %@! "
ERRFMT, _port, _host, _inClass, ERRPARAM];
}
- (OFTCPSocket*)socket
{
OF_GETTER(_socket, NO)
}
|
| ︙ | ︙ |