]> git.saurik.com Git - apple/security.git/blobdiff - Keychain/PeerListCell.m
Security-57740.51.3.tar.gz
[apple/security.git] / Keychain / PeerListCell.m
diff --git a/Keychain/PeerListCell.m b/Keychain/PeerListCell.m
deleted file mode 100644 (file)
index bfbf7db..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-//  PeerListCell.m
-//  Security
-//
-//  Created by Mitch Adler on 12/4/12.
-//
-//
-
-#import "PeerListCell.h"
-
-@implementation PeerListCell
-
-- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
-{
-    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
-    if (self) {
-        // Initialization code
-    }
-    return self;
-}
-
-- (void)setSelected:(BOOL)selected animated:(BOOL)animated
-{
-    [super setSelected:selected animated:animated];
-
-    // Configure the view for the selected state
-}
-
-+ (NSString *)reuseIdentifier
-{
-    return @"PeerTableCell";
-}
-
-@end