ObjFW  Diff

Differences From Artifact [7dc7df3c42]:

To Artifact [08c4d073ff]:


51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
	_selector = selector;

	return self;
}

- (OFString*)description
{
	if (_description != nil)
		return _description;

	_description = [[OFString alloc] initWithFormat:
	    @"The selector %s is not understood by class %@ or not (fully) "
	    @"implemented!", sel_getName(_selector), _inClass];

	return _description;
}

- (SEL)selector
{
	return _selector;
}
@end







<
<
|
<


<
<







51
52
53
54
55
56
57


58

59
60


61
62
63
64
65
66
67
	_selector = selector;

	return self;
}

- (OFString*)description
{


	return [OFString stringWithFormat:

	    @"The selector %s is not understood by class %@ or not (fully) "
	    @"implemented!", sel_getName(_selector), _inClass];


}

- (SEL)selector
{
	return _selector;
}
@end