Differences From Artifact [975e60fb76]:
- File
src/exceptions/OFAlreadyConnectedException.m
— part of check-in
[44f45c2e35]
at
2017-01-09 17:36:36
on branch trunk
— Update copyright
Forgot to add 2017, even though I already did quite some changes in
2017. (user: js, size: 1300) [annotate] [blame] [check-ins using]
To Artifact [e64bcd1baf]:
- File
src/exceptions/OFAlreadyConnectedException.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 1301) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
39 40 41 42 43 44 45 | - (void)dealloc { [_socket release]; [super dealloc]; } | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | - (void)dealloc { [_socket release]; [super dealloc]; } - (OFString *)description { if (_socket) return [OFString stringWithFormat: @"The socket of type %@ is already connected or bound and " @"thus can't be connected or bound again!", [_socket class]]; else |
︙ | ︙ |