From b0ec7c557c885b41047c7591a9d075ba7f705395 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Sun, 19 Jun 2022 21:04:53 -0700 Subject: [PATCH] Remove exception variable setter Remove SceneKit crash variable setting exception handler from NSApplication delegate. --- Application/MediaKeysApplication.m | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Application/MediaKeysApplication.m b/Application/MediaKeysApplication.m index 5f178c2bd..ab0befa25 100644 --- a/Application/MediaKeysApplication.m +++ b/Application/MediaKeysApplication.m @@ -20,11 +20,6 @@ AppController *_appController; } -- (void)reportException:(NSException *)exception { - [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"sceneKitCrashed"]; - [super reportException:exception]; -} - - (void)finishLaunching { [super finishLaunching]; _appController = (AppController *)[self delegate];