summaryrefslogtreecommitdiff
path: root/macosx/PcsxrDiscHandler.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/PcsxrDiscHandler.m')
-rwxr-xr-xmacosx/PcsxrDiscHandler.m15
1 files changed, 2 insertions, 13 deletions
diff --git a/macosx/PcsxrDiscHandler.m b/macosx/PcsxrDiscHandler.m
index eceec784..a7b0c04f 100755
--- a/macosx/PcsxrDiscHandler.m
+++ b/macosx/PcsxrDiscHandler.m
@@ -13,11 +13,10 @@
#include "cdrom.h"
#import "RecentItemsMenu.h"
#import "PcsxrController.h"
-#import "ARCBridge.h"
@interface PcsxrDiscHandler ()
-@property (nonatomic, arcstrong) NSURL *discURL;
-@property (arcweak) NSString *discPath;
+@property (nonatomic, strong) NSURL *discURL;
+@property (weak) NSString *discPath;
@end
@implementation PcsxrDiscHandler
@@ -37,7 +36,6 @@
static NSArray *utisupport = nil;
if (utisupport == nil) {
utisupport = @[@"com.alcohol-soft.mdfdisc", @"com.goldenhawk.cdrwin-cuesheet", @"com.apple.disk-image-ndif", @"public.iso-image", @"com.sony.psp.firmware", @"com.codeplex.pcsxr.compressed-bin-image"];
- RETAINOBJNORETURN(utisupport);
}
return utisupport;
}
@@ -54,13 +52,4 @@
return YES;
}
-#if !__has_feature(objc_arc)
-- (void)dealloc
-{
- self.discURL = nil;
-
- [super dealloc];
-}
-#endif
-
@end