From a6af990a653202982c7ed842567d78349a2c9b2c Mon Sep 17 00:00:00 2001 From: Nate Weaver Date: Fri, 3 Jul 2020 11:30:59 -0500 Subject: [PATCH] Remove define checks --- Mac (ObjC)/Controller.m | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Mac (ObjC)/Controller.m b/Mac (ObjC)/Controller.m index 5f600fe..0c64363 100644 --- a/Mac (ObjC)/Controller.m +++ b/Mac (ObjC)/Controller.m @@ -20,15 +20,7 @@ @interface Controller () @implementation Controller - (void)awakeFromNib { -#if PUNYCODE_COCOA_USE_WEBKIT -# define PUNYCODE_COCOA_LIBNAME @"WebKit" -#elif PUNYCODE_COCOA_USE_ICU -# define PUNYCODE_COCOA_LIBNAME @"ICU" -#else -# define PUNYCODE_COCOA_LIBNAME @"custom" -#endif - - self.window.title = [NSString stringWithFormat:@"%@ (%@)", self.window.title, PUNYCODE_COCOA_LIBNAME]; + self.window.title = [NSString stringWithFormat:@"%@ (ObjC)", self.window.title]; } - (IBAction)stringToIDNA:(id)sender {