ObjFW  Diff

Differences From Artifact [975e60fb76]:

To Artifact [e64bcd1baf]:


39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
- (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
		return @"A connection has already been established!";
}
@end







|










39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
- (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
		return @"A connection has already been established!";
}
@end