ObjFW  Diff

Differences From Artifact [d73a03ff14]:

To Artifact [338aae8b92]:


13
14
15
16
17
18
19
20


21
22

23
24
25
26
27
28
29

#import "OFEnumerator.h"
#import "OFExceptions.h"

@implementation OFEnumerator
- init
{
	if (isa == [OFEnumerator class])


		@throw [OFNotImplementedException newWithClass: isa
						      selector: _cmd];


	return [super init];
}

- (id)nextObject
{
	@throw [OFNotImplementedException newWithClass: isa







|
>
>
|

>







13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

#import "OFEnumerator.h"
#import "OFExceptions.h"

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

	return [super init];
}

- (id)nextObject
{
	@throw [OFNotImplementedException newWithClass: isa