Selaa lähdekoodia

VLCKit: dropped superfluous method that is already auto-generated for property

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Florent Pillet 11 vuotta sitten
vanhempi
commit
84c8e52efe
1 muutettua tiedostoa jossa 0 lisäystä ja 16 poistoa
  1. 0 16
      Sources/VLCMedia.m

+ 0 - 16
Sources/VLCMedia.m

@@ -988,19 +988,3 @@ NSString *const VLCMediaTracksInformationTextEncoding = @"encoding"; // NSString
 }
 #endif
 @end
-
-/******************************************************************************
- * Implementation VLCMedia (VLCMediaPlayerBridging)
- */
-
-@implementation VLCMedia (VLCMediaPlayerBridging)
-
-- (void)setLength:(VLCTime *)value
-{
-    if (length && value && [length compare:value] == NSOrderedSame)
-        return;
-
-    length = value ? value : nil;
-}
-
-@end