@@ -21,15 +21,15 @@ #import "OFBridging.h" #import "OFOutOfRangeException.h" @implementation NSDictionary_OFDictionary -- initWithOFDictionary: (OFDictionary*)dictionary_ +- initWithOFDictionary: (OFDictionary*)dictionary { if ((self = [super init]) != nil) { @try { - dictionary = [dictionary_ retain]; + _dictionary = [dictionary retain]; } @catch (id e) { return nil; } } @@ -41,23 +41,23 @@ id object; if ([key conformsToProtocol: @protocol(NSBridging)]) key = [key OFObject]; - object = [dictionary objectForKey: key]; + object = [_dictionary objectForKey: key]; if ([object conformsToProtocol: @protocol(OFBridging)]) return [object NSObject]; return object; } - (NSUInteger)count { - size_t count = [dictionary count]; + size_t count = [_dictionary count]; if (count > NSUIntegerMax) @throw [OFOutOfRangeException exceptionWithClass: [self class]]; return (NSUInteger)count; } @end