소스 검색

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

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Florent Pillet 11 년 전
부모
커밋
84c8e52efe
1개의 변경된 파일0개의 추가작업 그리고 16개의 파일을 삭제
  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