diff options
author | Teddy Wing | 2018-11-04 15:59:30 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-04 15:59:30 +0100 |
commit | d443437e8c2fb43fb48e485d7dd3ba44c5e79782 (patch) | |
tree | f0fd3fa544c81f7201fdd5a6817d84b6595ac70c | |
parent | 6880d1f0c3847cdf734812ee6a25c9935a01aacc (diff) | |
download | DomeKey-d443437e8c2fb43fb48e485d7dd3ba44c5e79782.tar.bz2 |
main(): Remove "Hello, World" `NSLog`
Don't need this any more.
-rw-r--r-- | DomeKey/main.m | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/DomeKey/main.m b/DomeKey/main.m index a64b3d5..623e472 100644 --- a/DomeKey/main.m +++ b/DomeKey/main.m @@ -48,9 +48,6 @@ int main(int argc, const char * argv[]) { AppDelegate *app = [[AppDelegate alloc] initWithConfig:config]; [NSApp setDelegate:app]; - // insert code here... - NSLog(@"Hello, World!"); - [NSApp run]; } } else if (config->args.version) { |