ObjFW  Diff

Differences From Artifact [ab0fe4a97d]:

To Artifact [9048491627]:


30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
			return nil;
		}
	}

	return self;
}

- (id)objectAtIndex: (NSUInteger)index
{
	id object = [_array objectAtIndex: index];

	if ([(OFObject *)object conformsToProtocol: @protocol(OFBridging)])
		return [object NSObject];

	return object;
}








|

|







30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
			return nil;
		}
	}

	return self;
}

- (id)objectAtIndex: (NSUInteger)idx
{
	id object = [_array objectAtIndex: idx];

	if ([(OFObject *)object conformsToProtocol: @protocol(OFBridging)])
		return [object NSObject];

	return object;
}