summaryrefslogtreecommitdiff
path: root/macosx/plugins/DFNet/macsrc/SockDialog.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/plugins/DFNet/macsrc/SockDialog.m')
-rwxr-xr-xmacosx/plugins/DFNet/macsrc/SockDialog.m11
1 files changed, 0 insertions, 11 deletions
diff --git a/macosx/plugins/DFNet/macsrc/SockDialog.m b/macosx/plugins/DFNet/macsrc/SockDialog.m
index 77a09f04..0114f33f 100755
--- a/macosx/plugins/DFNet/macsrc/SockDialog.m
+++ b/macosx/plugins/DFNet/macsrc/SockDialog.m
@@ -10,7 +10,6 @@
#include "dfnet.h"
#import "EmuThread.h"
-#import "ARCBridge.h"
void SysMessage(const char *fmt, ...)
{
@@ -81,8 +80,6 @@ void sockDestroyWaitDlg()
RunOnMainThreadSync(^{
if (globalSock != nil) {
[globalSock close];
-
- RELEASEOBJ(globalSock);
globalSock = nil;
}
});
@@ -102,12 +99,4 @@ void sockDestroyWaitDlg()
return self;
}
-#if !__has_feature(objc_arc)
--(void)dealloc
-{
-
- [super dealloc];
-}
-#endif
-
@end