removed mods directory from the ATutor codebase
[atutor.git] / mods / atsocial_iphone_app / Classes / ContactsViewController.m
diff --git a/mods/atsocial_iphone_app/Classes/ContactsViewController.m b/mods/atsocial_iphone_app/Classes/ContactsViewController.m
deleted file mode 100644 (file)
index b2ad546..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-//  ContactsViewController.m
-//  ATutor
-//
-//  Created by Quang Anh Do on 03/07/2010.
-//  Copyright 2010 Quang Anh Do. All rights reserved.
-//
-
-#import "ContactsViewController.h"
-#import "Contact.h"
-#import "CommonFunctions.h"
-#import "ContactsDataSource.h"
-
-@implementation ContactsViewController
-
-- (void)dealloc {
-       [super dealloc];
-}
-
-- (id)init {
-       if (self = [super init]) {
-               self.title = TTLocalizedString(@"Contacts", @"");
-               self.autoresizesForKeyboard = YES;
-       }
-       
-       return self;
-}
-
-- (void)loadView {
-       [super loadView];
-       
-       self.dataSource = [[ContactsDataSource alloc] init];
-}
-
-@end