Removing new API additions...
[MenuTunes.git] / iTunesTrack.m
diff --git a/iTunesTrack.m b/iTunesTrack.m
deleted file mode 100755 (executable)
index 7b3a813..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-//  iTunesTrack.m
-//  MenuTunes
-//
-//  Created by Joseph Spiros on Sat Sep 06 2003.
-//  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
-//
-
-#import "iTunesTrack.h"
-
-@implementation iTunesTrack
-
-+ (id)trackWithDatabaseIndex:(int)index {
-    return [[[iTunesTrack alloc] initWithIndex:index] autorelease];
-}
-
-- (id)initWithDatabaseIndex:(int)index {
-    if ( ( self = [super init] ) ) {
-        _index = index;
-    }
-    return self;
-}
-
-@end