@@ -98,12 +98,11 @@ self = [self initWithCapacity: count]; @try { for (id object in set) - [_mapTable setObject: (void *)1 - forKey: object]; + [_mapTable setObject: (void *)1 forKey: object]; } @catch (id e) { [self release]; @throw e; } @@ -126,12 +125,11 @@ self = [self initWithCapacity: count]; @try { for (id object in array) - [_mapTable setObject: (void *)1 - forKey: object]; + [_mapTable setObject: (void *)1 forKey: object]; } @catch (id e) { [self release]; @throw e; } @@ -143,12 +141,11 @@ { self = [self initWithCapacity: count]; @try { for (size_t i = 0; i < count; i++) - [_mapTable setObject: (void *)1 - forKey: objects[i]]; + [_mapTable setObject: (void *)1 forKey: objects[i]]; } @catch (id e) { [self release]; @throw e; } @@ -172,16 +169,14 @@ _mapTable = [[OFMapTable alloc] initWithKeyFunctions: keyFunctions objectFunctions: objectFunctions capacity: count]; - [_mapTable setObject: (void *)1 - forKey: firstObject]; + [_mapTable setObject: (void *)1 forKey: firstObject]; while ((object = va_arg(arguments, id)) != nil) - [_mapTable setObject: (void *)1 - forKey: object]; + [_mapTable setObject: (void *)1 forKey: object]; } @catch (id e) { [self release]; @throw e; }