Changeset f87ebe5bfc9ad2842bc428a04d458f95183c300c

Show
Ignore:
Timestamp:
04/01/08 00:57:19 (3 months ago)
Author:
Faustino Osuna <enrique.osuna@gmail.com>
git-committer:
Faustino Osuna <enrique.osuna@gmail.com> 1207004239 +0100
git-parent:

[0b34e2c004dc284dc371dee33afd18bb970c00f7]

git-author:
Faustino Osuna <enrique.osuna@gmail.com> 1207004239 +0100
Message:

VLCKit.framework: Remove dead code from VLCTime object.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • projects/macosx/framework/Headers/Public/VLCTime.h

    r43a3035 rf87ebe5  
    3636+ (VLCTime *)nullTime; 
    3737+ (VLCTime *)timeWithNumber:(NSNumber *)aNumber; 
    38 //+ (VLCTime *)timeWithString:(NSString *)aString; 
    3938 
    4039/* Initializers */ 
    4140- (id)initWithNumber:(NSNumber *)aNumber; 
    42 //- (id)initWithString:(NSString *)aString; 
    4341 
    4442/* Properties */ 
  • projects/macosx/framework/Sources/VLCTime.m

    rf88c57c rf87ebe5  
    2626 
    2727@implementation VLCTime 
     28/* Factories */ 
    2829+ (VLCTime *)nullTime 
    2930{ 
     
    3940} 
    4041 
    41 // TODO: Implement [VLCTime timeWithString] 
    42 //+ (VLCTime *)timeWithString:(NSString *)aString 
    43 //{ 
    44 //  return [[[VLCTime alloc] initWithString:aString] autorelease]; 
    45 //} 
    46  
     42/* Initializers */ 
    4743- (id)initWithNumber:(NSNumber *)aNumber 
    4844{ 
     
    5753} 
    5854 
    59 // TODO: Implement [VLCTime initWithString] 
    60 //- (id)initWithString:(NSString *)aString 
    61 //{ 
    62 //  // Sounds like a good idea but I really don't think there is any value added 
    63 //  if (self = [super init]) 
    64 //  { 
    65 //      // convert value 
    66 //  } 
    67 //  return self; 
    68 //} 
    69  
    7055- (void)dealloc 
    7156{ 
     
    7459} 
    7560 
     61/* NSObject Overrides */ 
     62- (NSString *)description 
     63{ 
     64    return self.stringValue; 
     65} 
     66 
     67/* Operations */ 
    7668- (NSNumber *)numberValue 
    7769{ 
     
    10597        return [value compare:aTime.numberValue]; 
    10698} 
    107  
    108 - (NSString *)description 
    109 { 
    110     return self.stringValue; 
    111 } 
    11299@end