ObjFW  Diff

Differences From Artifact [c2bd5da7b9]:

To Artifact [9ce801be06]:


65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

	plugin->handle = handle;
	return plugin;
}

- init
{
	if (isa == [OFPlugin class]) {
		Class c = isa;
		[self release];
		@throw [OFNotImplementedException exceptionWithClass: c
							    selector: _cmd];
	}

	return [super init];
}







|
|







65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

	plugin->handle = handle;
	return plugin;
}

- init
{
	if (object_getClass(self) == [OFPlugin class]) {
		Class c = [self class];
		[self release];
		@throw [OFNotImplementedException exceptionWithClass: c
							    selector: _cmd];
	}

	return [super init];
}