ObjFW  Diff

Differences From Artifact [98b7296261]:

To Artifact [64e81089ac]:


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 argument or receiver for method %s of class %@ is invalid!",
	    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 argument or receiver for method %s of class %@ is invalid!",
	    sel_getName(_selector), _inClass];


}

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