ObjFW  Diff

Differences From Artifact [cea8613a88]:

To Artifact [6f2dd90cb4]:


56
57
58
59
60
61
62

63
64

65





66
67
	[_object release];

	[super dealloc];
}

- (OFString *)description
{

	return [OFString stringWithFormat:
	    @"The selector %s is not understood by an object of type %@ or not "

	    @"(fully) implemented!", sel_getName(_selector), [_object class]];





}
@end







>
|
|
>
|
>
>
>
>
>


56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
	[_object release];

	[super dealloc];
}

- (OFString *)description
{
	if (_object != nil)
		return [OFString stringWithFormat:
		    @"The selector %s is not understood by an object of type "
		    @"%@ or not (fully) implemented!",
		    sel_getName(_selector), [_object class]];
	else
		return [OFString stringWithFormat:
		    @"The selector %s is not understood by an unknown object "
		    @"or not (fully) implemented!",
		    sel_getName(_selector)];
}
@end