瀏覽代碼

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