ObjFW  Diff

Differences From Artifact [2aae04b428]:

To Artifact [6c8188e145]:


51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

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

	description = [[OFString alloc] initWithFormat:
	    @"The argument 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
68

- (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