Commit 5f9c8363 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

VLCKit: remove - (id)initWithArray:(NSArray *)array;

parent 0ba86c34
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment