]> git.saurik.com Git - apple/security.git/blobdiff - Keychain/DeviceItemCell.m
Security-57740.51.3.tar.gz
[apple/security.git] / Keychain / DeviceItemCell.m
diff --git a/Keychain/DeviceItemCell.m b/Keychain/DeviceItemCell.m
deleted file mode 100644 (file)
index d6b9682..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-//  DeviceItemCell.m
-//  Security
-//
-//
-
-#import "DeviceItemCell.h"
-
-@implementation DeviceItemCell
-
-- (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 @"DeviceItemCellIdentifier";
-}
-
-@end