ObjFW  Diff

Differences From Artifact [92d6803c52]:

To Artifact [24e48bd9b8]:


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;
}