@@ -58,12 +58,6 @@ extern NSString * VLCMediaListItemDeleted;
NSMutableArray * cachedMedia; //< Private copy of media objects.
}
-/**
- * Init a MediaList with the media contained in array.
- * \array an array of VLCMedia.
- */
-- (id)initWithArray:(NSArray *)array;
-
/* Operations */
/**
* TODO: Documentation - [VLCMediaList lock]
@@ -86,17 +86,6 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
return self;
-- (id)initWithArray:(NSArray *)array
-{
- self = [self init];
- if (!self)
- return nil;
- for (VLCMedia *media in array)
- [self addMedia:media];
- return self;
-}
- (void)dealloc
{
libvlc_event_manager_t *em = libvlc_media_list_event_manager(p_mlist);